diff --git a/ChangeLog b/ChangeLog index 29d3ced3..53baf423 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,22 @@ # for this file format description, # see https://github.com/olivierlacan/keep-a-changelog +## [2.16.0] - 2017-11-13 +### Added +- https and "Connect" method for HTTP proxy +- outproxy for HTTP proxy +- initial support of ECIES crypto +- NTCP soft and hard descriptors limits +### Changed +- Faster implmentation of GOST R 34.11 hash +- Reject routers with RSA signtures +- Reload config and shudown from Windows GUI +- Update tunnels address(destination) without restart +### Fixed +- BOB crashes if destination is not set +- Correct SAM tunnel name +- QT GUI issues + ## [2.15.0] - 2017-08-17 ### Added - QT GUI diff --git a/Win32/installer.iss b/Win32/installer.iss index 55f89a32..86edf220 100644 --- a/Win32/installer.iss +++ b/Win32/installer.iss @@ -1,5 +1,5 @@ #define I2Pd_AppName "i2pd" -#define I2Pd_ver "2.15.0" +#define I2Pd_ver "2.16.0" #define I2Pd_Publisher "PurpleI2P" [Setup] diff --git a/android/AndroidManifest.xml b/android/AndroidManifest.xml index e4023db5..e542b42e 100755 --- a/android/AndroidManifest.xml +++ b/android/AndroidManifest.xml @@ -2,7 +2,7 @@ diff --git a/libi2pd/version.h b/libi2pd/version.h index 4633ce0b..ba7a27b8 100644 --- a/libi2pd/version.h +++ b/libi2pd/version.h @@ -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 15 +#define I2PD_VERSION_MINOR 16 #define I2PD_VERSION_MICRO 0 #define I2PD_VERSION_PATCH 0 #define I2PD_VERSION MAKE_VERSION(I2PD_VERSION_MAJOR, I2PD_VERSION_MINOR, I2PD_VERSION_MICRO)