Update checklist.md and bump version numbers

This commit is contained in:
eyedeekay
2026-02-09 14:27:41 -05:00
parent 8dcda34da1
commit 8e1eb6b012
6 changed files with 10 additions and 7 deletions

View File

@@ -31,7 +31,7 @@ public class CoreVersion {
* Otherwise, the same as PUBLISHED_VERSION.
* RouterVersion.FULL_VERSION is suggested for display to the user.
*/
public final static String VERSION = "2.10.0";
public final static String VERSION = "2.11.0";
/**
* The version published in the netdb via StatisticsManager.
@@ -48,7 +48,7 @@ public class CoreVersion {
*
* @since 0.9.46
*/
public final static String PUBLISHED_VERSION = "0.9.67";
public final static String PUBLISHED_VERSION = "0.9.68";
/**
* For Vuze.

View File

@@ -1,3 +1,6 @@
2026-02-09 idk
* Release I2P 2.11.0
2026-02-08 zzz
* Debian: Remove resolute jars from jammy source
* Router: More robustness fixes

View File

@@ -4,7 +4,7 @@
<info>
<appname>i2p</appname>
<appversion>2.10.0</appversion>
<appversion>2.11.0</appversion>
<authors>
<author name="I2P" email="https://i2p.net/"/>
</authors>

View File

@@ -10,7 +10,7 @@
<info>
<appname>i2p</appname>
<appversion>2.10.0</appversion>
<appversion>2.11.0</appversion>
<authors>
<author name="I2P" email="https://i2p.net/"/>
</authors>

View File

@@ -100,7 +100,7 @@
git clone -l . /path/to/releasedir
```
- You must build with Java 8 or higher.
- You must build with Java 17 or higher.
4. Create override.properties with (adjust as necessary):

View File

@@ -19,8 +19,8 @@ public class RouterVersion {
public final static String ID = "Git";
public final static String VERSION = CoreVersion.VERSION;
/** for example: "beta", "alpha", "rc" */
public final static String QUALIFIER = "-rc";
public final static long BUILD = 11;
public final static String QUALIFIER = "";
public final static long BUILD = 0;
/** for example "-test" */
public final static String EXTRA = "";
public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;