Skip to content

Commit

Permalink
2.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed Aug 23, 2018
1 parent 022f4d2 commit 71ac028
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 5 deletions.
11 changes: 11 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
# for this file format description,
# see https://github.com/olivierlacan/keep-a-changelog

## [2.20.0] - 2018-08-23
### Added
- Full implementation of NTCP2
- Assets for android
### Changed
- armeabi-v7a and x86 in one apk for android
- NTCP2 is enabled by default
- Show lease's expiration time in readable format in the web console
### Fixed
- Correct names for transports in the web console

## [2.19.0] - 2018-06-26
### Added
- ECIES support for RouterInfo
Expand Down
2 changes: 1 addition & 1 deletion Win32/installer.iss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#define I2Pd_AppName "i2pd"
#define I2Pd_ver "2.19.0"
#define I2Pd_ver "2.20.0"
#define I2Pd_Publisher "PurpleI2P"

[Setup]
Expand Down
2 changes: 1 addition & 1 deletion android/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
package="org.purplei2p.i2pd"
android:installLocation="auto"
android:versionCode="1"
android:versionName="2.19.0">
android:versionName="2.20.0">

<uses-sdk
android:minSdkVersion="14"
Expand Down
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ android {
targetSdkVersion 28
minSdkVersion 14
versionCode 1
versionName "2.19.0"
versionName "2.20.0"
ndk {
abiFilters 'armeabi-v7a'
abiFilters 'x86'
Expand Down
3 changes: 3 additions & 0 deletions contrib/rpm/i2pd.spec
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,9 @@ getent passwd i2pd >/dev/null || \


%changelog
* Thu Aug 23 2018 orignal <i2porignal@yandex.ru> - 2.20.0
- update to 2.20.0

* Tue Jun 26 2018 orignal <i2porignal@yandex.ru> - 2.19.0
- update to 2.19.0

Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
i2pd (2.20.0-1) unstable; urgency=medium

* updated to version 2.20.0/0.9.36

-- orignal <orignal@i2pmail.org> Thu, 23 Aug 2018 16:00:00 +0000

i2pd (2.19.0-1) unstable; urgency=medium

* updated to version 2.19.0/0.9.35
Expand Down
4 changes: 2 additions & 2 deletions libi2pd/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#define MAKE_VERSION(a,b,c) STRINGIZE(a) "." STRINGIZE(b) "." STRINGIZE(c)

#define I2PD_VERSION_MAJOR 2
#define I2PD_VERSION_MINOR 19
#define I2PD_VERSION_MINOR 20
#define I2PD_VERSION_MICRO 0
#define I2PD_VERSION_PATCH 0
#define I2PD_VERSION MAKE_VERSION(I2PD_VERSION_MAJOR, I2PD_VERSION_MINOR, I2PD_VERSION_MICRO)
Expand All @@ -21,7 +21,7 @@

#define I2P_VERSION_MAJOR 0
#define I2P_VERSION_MINOR 9
#define I2P_VERSION_MICRO 35
#define I2P_VERSION_MICRO 36
#define I2P_VERSION_PATCH 0
#define I2P_VERSION MAKE_VERSION(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)

Expand Down

0 comments on commit 71ac028

Please sign in to comment.