diff --git a/core/java/src/net/i2p/CoreVersion.java b/core/java/src/net/i2p/CoreVersion.java index 58c39a6c48f58c5a9095a884d03e6b7aa2627c39..853998eae7178e17a15319e54ac0d36ae69d912e 100644 --- a/core/java/src/net/i2p/CoreVersion.java +++ b/core/java/src/net/i2p/CoreVersion.java @@ -29,7 +29,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 = "0.9.47"; + public final static String VERSION = "0.9.48"; /** * The version published in the netdb via StatisticsManager. diff --git a/history.txt b/history.txt index 458ee997a6beb1858c855f4099d641cf80e53cf2..e3fa3189010af92ff818a7b9b27ef2008a28391d 100644 --- a/history.txt +++ b/history.txt @@ -1,3 +1,5 @@ +* 2020-12-01 0.9.48 released + 2020-11-26 zzz * NTCP: Enable nodelay by default * SSU: Don't wakeup OMF after ack if no more messages are pending diff --git a/installer/install.xml b/installer/install.xml index 7b8bf1f7d9237187e1c0c64e693f67eff39260b7..b358ef9cbf84a5a9648eca77a203ebecb49f3616 100644 --- a/installer/install.xml +++ b/installer/install.xml @@ -4,7 +4,7 @@ <info> <appname>i2p</appname> - <appversion>0.9.47</appversion> + <appversion>0.9.48</appversion> <authors> <author name="I2P" email="https://geti2p.net/"/> </authors> diff --git a/installer/install5.xml b/installer/install5.xml index a3cc5c56124769a80ef8a9f5c2a5e0b0e7d6a604..d23eda0fda160522e92bf6821cde34f4868a5390 100644 --- a/installer/install5.xml +++ b/installer/install5.xml @@ -10,7 +10,7 @@ <info> <appname>i2p</appname> - <appversion>0.9.47</appversion> + <appversion>0.9.48</appversion> <authors> <author name="I2P" email="https://geti2p.net/"/> </authors> diff --git a/router/java/src/net/i2p/router/RouterVersion.java b/router/java/src/net/i2p/router/RouterVersion.java index 987fc2f75390f60b0d628d76ac2a839672062e5e..a411b009986dc5f1f6384384ad98aeea42885422 100644 --- a/router/java/src/net/i2p/router/RouterVersion.java +++ b/router/java/src/net/i2p/router/RouterVersion.java @@ -18,10 +18,10 @@ public class RouterVersion { /** deprecated */ public final static String ID = "Monotone"; public final static String VERSION = CoreVersion.VERSION; - public final static long BUILD = 19; + public final static long BUILD = 0; /** for example "-test" */ - public final static String EXTRA = "-rc"; + public final static String EXTRA = ""; public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA; public static void main(String args[]) { System.out.println("I2P Router version: " + FULL_VERSION);