diff --git a/ChangeLog b/ChangeLog index a75e9c6e..530c3569 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,32 @@ # for this file format description, # see https://github.com/olivierlacan/keep-a-changelog +## [2.41.0] - 2022-02-21 +### Added +- Clock syncronization through SSU +- Drop routers older than 6 months on start +- Localization to German +- Don't send streaming ack too frequently +- Select compatible outbound tunnel for I2CP messages +- Restart webconsole's acceptor in case of exception +### Changed +- Use builtin bitswap for endian on windows +- Send SessionCreated before connection close if slock skew +- Try another floodfill for publishing if no compatible tunnels found +- Reduce memory usage for RouterInfo structures +- Avoid duplicated addresses in RouterInfo. Check presence of netId and version +- Use TCP/IP sockets for I2CP on Android instead local sockets +- Return uptime as integer in I2PControl +- Reseed servers list/cerificates +- Webconsole's dark style colors +### Fixed +- Yggdrasil transport and reseeds on Android +- Attempts to send peer tests to itself +- Severe packets drop in SSU +- Crash on tunnel tests +- Loading addressbook subscriptions from config +- Multiple I2CP session to the same destination + ## [2.40.0] - 2021-11-29 ### Added - Keep alive parameter for client tunnels diff --git a/contrib/rpm/i2pd-git.spec b/contrib/rpm/i2pd-git.spec index 304c51f5..ac6ca2fa 100644 --- a/contrib/rpm/i2pd-git.spec +++ b/contrib/rpm/i2pd-git.spec @@ -1,7 +1,7 @@ %define git_hash %(git rev-parse HEAD | cut -c -7) Name: i2pd-git -Version: 2.40.0 +Version: 2.41.0 Release: git%{git_hash}%{?dist} Summary: I2P router written in C++ Conflicts: i2pd @@ -146,6 +146,9 @@ getent passwd i2pd >/dev/null || \ %changelog +* Mon Feb 21 2022 orignal - 2.41.0 +- update to 2.41.0 + * Mon Nov 29 2021 orignal - 2.40.0 - update to 2.40.0 diff --git a/contrib/rpm/i2pd.spec b/contrib/rpm/i2pd.spec index 209129fe..11618b24 100644 --- a/contrib/rpm/i2pd.spec +++ b/contrib/rpm/i2pd.spec @@ -1,5 +1,5 @@ Name: i2pd -Version: 2.40.0 +Version: 2.41.0 Release: 1%{?dist} Summary: I2P router written in C++ Conflicts: i2pd-git @@ -143,6 +143,9 @@ getent passwd i2pd >/dev/null || \ %changelog +* Mon Feb 21 2022 orignal - 2.41.0 +- update to 2.41.0 + * Mon Nov 29 2021 orignal - 2.40.0 - update to 2.40.0 diff --git a/debian/changelog b/debian/changelog index be14be66..8754ed31 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +i2pd (2.41.0-1) unstable; urgency=medium + + * updated to version 2.41.0/0.9.53 + + -- orignal Mon, 21 Feb 2022 16:00:00 +0000 + i2pd (2.40.0-1) unstable; urgency=medium * updated to version 2.40.0/0.9.52 diff --git a/libi2pd/version.h b/libi2pd/version.h index 09e3c060..91228f68 100644 --- a/libi2pd/version.h +++ b/libi2pd/version.h @@ -16,7 +16,7 @@ #define MAKE_VERSION_NUMBER(a,b,c) ((a*100+b)*100+c) #define I2PD_VERSION_MAJOR 2 -#define I2PD_VERSION_MINOR 40 +#define I2PD_VERSION_MINOR 41 #define I2PD_VERSION_MICRO 0 #define I2PD_VERSION_PATCH 0 #ifdef GITVER @@ -35,7 +35,7 @@ #define I2P_VERSION_MAJOR 0 #define I2P_VERSION_MINOR 9 -#define I2P_VERSION_MICRO 52 +#define I2P_VERSION_MICRO 53 #define I2P_VERSION_PATCH 0 #define I2P_VERSION MAKE_VERSION(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO) #define I2P_VERSION_NUMBER MAKE_VERSION_NUMBER(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)