Skip to content

Commit

Permalink
2.37.0
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed Mar 15, 2021
1 parent cf86657 commit 7015bad
Show file tree
Hide file tree
Showing 6 changed files with 44 additions and 4 deletions.
28 changes: 28 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,34 @@
# for this file format description,
# see https://github.com/olivierlacan/keep-a-changelog

## [2.37.0] - 2021-03-15
### Added
- Address registration line for reg.i2p and stats.i2p through the web console
- "4" and "6" caps for addresses without published IP address
- Mesh and Proxy network statuses
- Symmetric NAT network status error
- Bind server tunnel connection to specified address
- lookuplocal BOB extended command
- address4 and address6 parameters to bind outgoing connections to
- Rekey of low-bandwidth routers to ECIES
- Popup notification windows when unable to parse config for Windows
### Changed
- Floodfills with "U" cap are not ignored anymore
- Check transports reachability between between tunnel peers and between router and floodfill
- NTCP2 and reseed HTTP proxy support authorization now
- Show actual IP addresses for proxy connections
- Publish and handle SSU addreses without host
- Outbound tunnel endpoint must be ipv4 compatible
- Logging optimization
- Removed windows service
### Fixed
- Incoming SSU session terminates after 5 seconds
- Outgoing NTCP2 ipv4 session even if ipv4 is disabled
- No incoming Yggdrasil connection if connected through NTCP2 proxy
- Race condition between tunnel build and floodfill requests decryption for ECIES routers
- Numeric bandwidth limitation
- Yggdrasil for Android

## [2.36.0] - 2021-02-15
### Added
- Encrypted lookup and publications to ECIES-x25519 floodfiils
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 2.36.0.{build}
version: 2.37.0.{build}
pull_requests:
do_not_increment_build_number: true
branches:
Expand Down
5 changes: 4 additions & 1 deletion contrib/rpm/i2pd-git.spec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
%define git_hash %(git rev-parse HEAD | cut -c -7)

Name: i2pd-git
Version: 2.36.0
Version: 2.37.0
Release: git%{git_hash}%{?dist}
Summary: I2P router written in C++
Conflicts: i2pd
Expand Down Expand Up @@ -137,6 +137,9 @@ getent passwd i2pd >/dev/null || \


%changelog
* Mon Mar 15 2021 orignal <[email protected]> - 2.37.0
- update to 2.37.0

* Mon Feb 15 2021 orignal <[email protected]> - 2.36.0
- update to 2.36.0

Expand Down
5 changes: 4 additions & 1 deletion contrib/rpm/i2pd.spec
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: i2pd
Version: 2.36.0
Version: 2.37.0
Release: 1%{?dist}
Summary: I2P router written in C++
Conflicts: i2pd-git
Expand Down Expand Up @@ -135,6 +135,9 @@ getent passwd i2pd >/dev/null || \


%changelog
* Mon Mar 15 2021 orignal <[email protected]> - 2.37.0
- update to 2.37.0

* Mon Feb 15 2021 orignal <[email protected]> - 2.36.0
- update to 2.36.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.37.0-1) unstable; urgency=medium

* updated to version 2.37.0

-- orignal <[email protected]> Mon, 15 Mar 2021 16:00:00 +0000

i2pd (2.36.0-1) unstable; urgency=high

* updated to version 2.36.0/0.9.49
Expand Down
2 changes: 1 addition & 1 deletion libi2pd/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 36
#define I2PD_VERSION_MINOR 37
#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 Down

0 comments on commit 7015bad

Please sign in to comment.