Skip to content

Commit a587e09

Browse files
author
eyedeekay
committed
Router: update versions
1 parent 03635ad commit a587e09

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

core/java/src/net/i2p/CoreVersion.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public class CoreVersion {
3131
* Otherwise, the same as PUBLISHED_VERSION.
3232
* RouterVersion.FULL_VERSION is suggested for display to the user.
3333
*/
34-
public final static String VERSION = "2.3.0";
34+
public final static String VERSION = "2.4.0";
3535

3636
/**
3737
* The version published in the netdb via StatisticsManager.
@@ -48,7 +48,7 @@ public class CoreVersion {
4848
*
4949
* @since 0.9.46
5050
*/
51-
public final static String PUBLISHED_VERSION = "0.9.59";
51+
public final static String PUBLISHED_VERSION = "0.9.61";
5252

5353
/**
5454
* For Vuze.

history.txt

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2023-12-18 2.3.0 (API 0.9.61) released
2+
3+
2023-12-15 idk
4+
* Pull translations from Transifex
5+
* Fix updating router profile in SearchUpdateReplyFoundJob
6+
17
2023-12-15 zzz
28
* Pull translations from Transifex
39

installer/install.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<info>
66
<appname>i2p</appname>
7-
<appversion>2.3.0</appversion>
7+
<appversion>2.4.0</appversion>
88
<authors>
99
<author name="I2P" email="https://geti2p.net/"/>
1010
</authors>

installer/install5.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<info>
1212
<appname>i2p</appname>
13-
<appversion>2.3.0</appversion>
13+
<appversion>2.4.0</appversion>
1414
<authors>
1515
<author name="I2P" email="https://geti2p.net/"/>
1616
</authors>

router/java/src/net/i2p/router/RouterVersion.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ public class RouterVersion {
1919
public final static String ID = "Git";
2020
public final static String VERSION = CoreVersion.VERSION;
2121
/** for example: "beta", "alpha", "rc" */
22-
public final static String QUALIFIER = "-rc";
23-
public final static long BUILD = 19;
22+
public final static String QUALIFIER = "";
23+
public final static long BUILD = 0;
2424
/** for example "-test" */
2525
public final static String EXTRA = "";
2626
public final static String FULL_VERSION = VERSION + "-" + BUILD + QUALIFIER + EXTRA;

0 commit comments

Comments
 (0)