Skip to content

Commit e458361

Browse files
author
zzz
committed
Fix bad reversion
0.9.41
1 parent fea3551 commit e458361

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

apps/i2ptunnel/jsp/register.jsp

+1-1
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ input.default { width: 1px; height: 1px; visibility: hidden; }
150150
</tr>
151151
<tr>
152152
<td>
153-
<div class="displayText" tabindex="0" "title="<%=intl._t("Copy and paste this to the registration site")%>"><% he.write(out); %></div>
153+
<div class="displayText" tabindex="0" title="<%=intl._t("Copy and paste this to the registration site")%>"><% he.write(out); %></div>
154154
</td>
155155
</tr>
156156
</table>

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class CoreVersion {
1818
/** deprecated */
1919
public final static String ID = "Monotone";
2020

21-
public final static String VERSION = "0.9.40";
21+
public final static String VERSION = "0.9.41";
2222

2323
/**
2424
* For Vuze.

history.txt

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* 2019-07-03 0.9.41 released
2+
13
2019-06-28 zzz
24
* Update translations from Transifex
35

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>0.9.40</appversion>
7+
<appversion>0.9.41</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>0.9.40</appversion>
13+
<appversion>0.9.41</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
@@ -18,10 +18,10 @@ public class RouterVersion {
1818
/** deprecated */
1919
public final static String ID = "Monotone";
2020
public final static String VERSION = CoreVersion.VERSION;
21-
public final static long BUILD = 16;
21+
public final static long BUILD = 0;
2222

2323
/** for example "-test" */
24-
public final static String EXTRA = "-rc";
24+
public final static String EXTRA = "";
2525
public final static String FULL_VERSION = VERSION + "-" + BUILD + EXTRA;
2626
public static void main(String args[]) {
2727
System.out.println("I2P Router version: " + FULL_VERSION);

0 commit comments

Comments
 (0)