Skip to content

Commit

Permalink
2.27.0
Browse files Browse the repository at this point in the history
  • Loading branch information
orignal committed Jul 3, 2019
1 parent 6ccef66 commit 3acfb12
Show file tree
Hide file tree
Showing 9 changed files with 31 additions and 8 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
# for this file format description,
# see https://github.com/olivierlacan/keep-a-changelog

## [2.27.0] - 2019-07-03
### Added
- Support of PSK and DH authentication for encrypted LeaseSet2
### Changed
- Uptime is based on monotonic timer
### Fixed
- BOB status command response
- Correct NTCP2 port if NTCP is disabled
- Flood encrypted LeaseSet2 with store hash

## [2.26.0] - 2019-06-07
### Added
- HTTP method "PROPFIND"
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.26.0"
#define I2Pd_ver "2.27.0"
#define I2Pd_Publisher "PurpleI2P"

[Setup]
Expand Down
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ android {
applicationId "org.purplei2p.i2pd"
targetSdkVersion 28
minSdkVersion 14
versionCode 2260
versionName "2.26.0"
versionCode 2270
versionName "2.27.0"
ndk {
abiFilters 'armeabi-v7a'
abiFilters 'x86'
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.26.0.{build}
version: 2.27.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.26.0
Version: 2.27.0
Release: git%{git_hash}%{?dist}
Summary: I2P router written in C++
Conflicts: i2pd
Expand Down Expand Up @@ -110,6 +110,9 @@ getent passwd i2pd >/dev/null || \


%changelog
* Wed Jul 3 2019 orignal <[email protected]> - 2.27.0
- update to 2.27.0

* Fri Jun 7 2019 orignal <[email protected]> - 2.26.0
- update to 2.26.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.26.0
Version: 2.27.0
Release: 1%{?dist}
Summary: I2P router written in C++
Conflicts: i2pd-git
Expand Down Expand Up @@ -108,6 +108,9 @@ getent passwd i2pd >/dev/null || \


%changelog
* Wed Jul 3 2019 orignal <[email protected]> - 2.27.0
- update to 2.27.0

* Fri Jun 7 2019 orignal <[email protected]> - 2.26.0
- update to 2.26.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.27.0-1) unstable; urgency=medium

* updated to version 2.27.0/0.9.41

-- orignal <[email protected]> Wed, 3 Jul 2019 16:00:00 +0000

i2pd (2.26.0-1) unstable; urgency=medium

* updated to version 2.26.0
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 26
#define I2PD_VERSION_MINOR 27
#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 40
#define I2P_VERSION_MICRO 41
#define I2P_VERSION_PATCH 0
#define I2P_VERSION MAKE_VERSION(I2P_VERSION_MAJOR, I2P_VERSION_MINOR, I2P_VERSION_MICRO)

Expand Down
1 change: 1 addition & 0 deletions qt/i2pd_qt/data/website.i2pd.i2pd.appdata.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
<translation type="qt" />

<releases>
<release version="2.27.0" date="2019-07-03" />
<release version="2.26.0" date="2019-06-07" />
<release version="2.25.0" date="2019-05-09" />
<release version="2.24.0" date="2019-03-21" />
Expand Down

0 comments on commit 3acfb12

Please sign in to comment.