Skip to content

Commit e370d85

Browse files
committed
Version bump.
1 parent 07afeac commit e370d85

File tree

4 files changed

+9
-8
lines changed

4 files changed

+9
-8
lines changed

Readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ https://wikipediatools.appspot.com and other Wikipedia-related bits and pieces.
1111
Requires JDK >= 17. For those using modules, only the java.base, java.net.http and
1212
java.logging modules are required.
1313

14-
Latest stable version: [0.37](https://github.com/MER-C/wiki-java/releases/tag/0.37) --
14+
Latest stable version: [0.38](https://github.com/MER-C/wiki-java/releases/tag/0.38) --
1515
MediaWiki versions 1.39+
1616

1717
## Dependencies

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<project>
22
<groupId>org.wikipedia</groupId>
33
<artifactId>wiki-java</artifactId>
4-
<version>0.38-SNAPSHOT</version>
4+
<version>0.39-SNAPSHOT</version>
55
<modelVersion>4.0.0</modelVersion>
66

77
<build>

src/org/wikipedia/Wiki.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* @(#)Wiki.java 0.38 08/02/2019
3-
* Copyright (C) 2007 - 2022 MER-C and contributors
2+
* @(#)Wiki.java 0.39 12/08/2023
3+
* Copyright (C) 2007 - 2023 MER-C and contributors
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU General Public License
@@ -77,7 +77,7 @@
7777
* .</ul>
7878
*
7979
* @author MER-C and contributors
80-
* @version 0.38
80+
* @version 0.39
8181
*/
8282
public class Wiki implements Comparable<Wiki>
8383
{
@@ -405,7 +405,7 @@ public enum Gender
405405
unknown;
406406
}
407407

408-
private static final String version = "0.38";
408+
private static final String version = "0.39";
409409

410410
// fundamental URL strings
411411
private final String protocol, domain, scriptPath;

test/org/wikipedia/WikiTest.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/**
2-
* @(#)WikiTest.java 0.38 08/02/2019
3-
* Copyright (C) 2014-2022 MER-C
2+
* @(#)WikiTest.java 0.39 12/08/2023
3+
* Copyright (C) 2014-2023 MER-C
44
*
55
* This program is free software; you can redistribute it and/or
66
* modify it under the terms of the GNU General Public License
@@ -37,6 +37,7 @@
3737
/**
3838
* Unit tests for Wiki.java
3939
* @author MER-C
40+
* @version 0.39
4041
*/
4142
public class WikiTest
4243
{

0 commit comments

Comments
 (0)