Skip to content

Commit 8a92884

Browse files
committed
Refactoring checkpoint version bump. Might be the last version compilable
under JDK8 (--target=8 is definitely still supported), but we'll see.
1 parent d2a21db commit 8a92884

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

Readme.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ https://wikipediatools.appspot.com and other Wikipedia-related bits and pieces.
1313
Requires JDK >= 1.8. For those using Java 9, only the java.base and java.logging
1414
modules are required.
1515

16-
Latest stable version: [0.34](https://github.com/MER-C/wiki-java/releases/tag/0.34) --
17-
MediaWiki versions 1.28+
16+
Latest stable version: [0.35](https://github.com/MER-C/wiki-java/releases/tag/0.35) --
17+
MediaWiki versions 1.31+
1818

1919
## Dependencies
2020

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.34-SNAPSHOT</version>
4+
<version>0.36-SNAPSHOT</version>
55
<modelVersion>4.0.0</modelVersion>
66

77
<build>

src/org/wikipedia/Wiki.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @(#)Wiki.java 0.34 13/01/2018
2+
* @(#)Wiki.java 0.35 20/05/2018
33
* Copyright (C) 2007 - 2018 MER-C and contributors
44
*
55
* This program is free software; you can redistribute it and/or
@@ -54,7 +54,7 @@
5454
* tracker</a>.
5555
*
5656
* @author MER-C and contributors
57-
* @version 0.34
57+
* @version 0.35
5858
*/
5959
public class Wiki implements Comparable<Wiki>
6060
{
@@ -423,7 +423,7 @@ public enum Gender
423423
unknown;
424424
}
425425

426-
private static final String version = "0.34";
426+
private static final String version = "0.35";
427427

428428
// fundamental URL strings
429429
private final String protocol, domain, scriptPath;

test/org/wikipedia/WikiTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* @(#)WikiTest.java 0.34 13/01/2018
2+
* @(#)WikiTest.java 0.35 20/05/2018
33
* Copyright (C) 2014-2018 MER-C
44
*
55
* This program is free software; you can redistribute it and/or

0 commit comments

Comments
 (0)