From 0f337b9ce7a1b0fc87f48843933b1c5c4dd5a9ec Mon Sep 17 00:00:00 2001 From: arvidn Date: Sun, 8 Mar 2020 01:20:12 +0100 Subject: [PATCH] bump version to 1.2.5 --- ChangeLog | 2 ++ Jamfile | 2 +- bindings/python/setup.py | 2 +- build_dist.sh | 2 +- configure.ac | 2 +- docs/header.rst | 2 +- docs/hunspell/libtorrent.dic | 2 +- include/libtorrent/version.hpp | 6 +++--- src/settings_pack.cpp | 2 +- 9 files changed, 12 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index f0104d4bd..d7d6b3d64 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +1.2.5 release + * announce port=1 instead of port=0, when there is no listen port * fix LSD over IPv6 * support TCP_NOTSENT_LOWAT on Linux diff --git a/Jamfile b/Jamfile index 8fe9583ea..ac9ee96f7 100644 --- a/Jamfile +++ b/Jamfile @@ -45,7 +45,7 @@ else : : $(boost-include-path) /usr/local/include ; } -VERSION = 1.2.4 ; +VERSION = 1.2.5 ; rule linking ( properties * ) { diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 42df50180..411e6ae15 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -182,7 +182,7 @@ else: setup( name='python-libtorrent', - version='1.2.4', + version='1.2.5', author='Arvid Norberg', author_email='arvid@libtorrent.org', description='Python bindings for libtorrent-rasterbar', diff --git a/build_dist.sh b/build_dist.sh index 89c5d0d2c..0372504eb 100755 --- a/build_dist.sh +++ b/build_dist.sh @@ -16,7 +16,7 @@ chmod a-x docs/*.rst docs/*.htm* src/*.cpp include/libtorrent/*.hpp ./configure --enable-python-binding --enable-examples=yes --enable-encryption --enable-tests=yes make dist -VERSION=1.2.4 +VERSION=1.2.5 tar xvzf libtorrent-rasterbar-${VERSION}.tar.gz cd libtorrent-rasterbar-${VERSION}/test diff --git a/configure.ac b/configure.ac index 9ef95e850..dbaefc965 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ([2.63]) -AC_INIT([libtorrent-rasterbar],[1.2.4],[arvid@libtorrent.org], +AC_INIT([libtorrent-rasterbar],[1.2.5],[arvid@libtorrent.org], [libtorrent-rasterbar],[http://www.libtorrent.org]) AC_CONFIG_SRCDIR([src/torrent.cpp]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/docs/header.rst b/docs/header.rst index 32628dc0f..09ad20452 100644 --- a/docs/header.rst +++ b/docs/header.rst @@ -1,3 +1,3 @@ :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.2.4 +:Version: 1.2.5 diff --git a/docs/hunspell/libtorrent.dic b/docs/hunspell/libtorrent.dic index f4c316f02..ed820ba22 100644 --- a/docs/hunspell/libtorrent.dic +++ b/docs/hunspell/libtorrent.dic @@ -546,7 +546,7 @@ cpp tos BP qB -LT1240 +LT1250 iocontrol getname getpeername diff --git a/include/libtorrent/version.hpp b/include/libtorrent/version.hpp index 295470b4b..b391015fc 100644 --- a/include/libtorrent/version.hpp +++ b/include/libtorrent/version.hpp @@ -37,14 +37,14 @@ POSSIBILITY OF SUCH DAMAGE. #define LIBTORRENT_VERSION_MAJOR 1 #define LIBTORRENT_VERSION_MINOR 2 -#define LIBTORRENT_VERSION_TINY 4 +#define LIBTORRENT_VERSION_TINY 5 // the format of this version is: MMmmtt // M = Major version, m = minor version, t = tiny version #define LIBTORRENT_VERSION_NUM ((LIBTORRENT_VERSION_MAJOR * 10000) + (LIBTORRENT_VERSION_MINOR * 100) + LIBTORRENT_VERSION_TINY) -#define LIBTORRENT_VERSION "1.2.4.0" -#define LIBTORRENT_REVISION "9344dcc9b" +#define LIBTORRENT_VERSION "1.2.5.0" +#define LIBTORRENT_REVISION "9469913cb" namespace libtorrent { diff --git a/src/settings_pack.cpp b/src/settings_pack.cpp index 6dfcec422..45aa43ef8 100644 --- a/src/settings_pack.cpp +++ b/src/settings_pack.cpp @@ -124,7 +124,7 @@ constexpr int CLOSE_FILE_INTERVAL = 0; SET(proxy_username, "", &session_impl::update_proxy), SET(proxy_password, "", &session_impl::update_proxy), SET(i2p_hostname, "", &session_impl::update_i2p_bridge), - SET(peer_fingerprint, "-LT1240-", nullptr), + SET(peer_fingerprint, "-LT1250-", nullptr), SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes) }});