Skip to content

Commit 7931be9

Browse files
committed
bump version to 1.2.17
1 parent 0aa7657 commit 7931be9

File tree

9 files changed

+11
-10
lines changed

9 files changed

+11
-10
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
1.2.17 released
12

23
* fixed tracker connections spinning when hostname lookups stall
34
* fixed error in pkg-config file generation in Jamfile

Jamfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -861,7 +861,7 @@ rule generate-pkg-config ( properties * )
861861
local libname = [ $(props[2]).name ] ;
862862
props = $(props[1]) ;
863863

864-
local FULL_VERSION = 1.2.16 ;
864+
local FULL_VERSION = 1.2.17 ;
865865

866866
p = [ install-paths $(properties) ] ;
867867

bindings/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ def _configure_b2_with_distutils(self, python_binding_dir):
452452

453453
setuptools.setup(
454454
name="libtorrent",
455-
version="1.2.16",
455+
version="1.2.17",
456456
author="Arvid Norberg",
457457
author_email="arvid@libtorrent.org",
458458
description="Python bindings for libtorrent-rasterbar",

build_dist.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ chmod a-x docs/*.rst docs/*.htm* src/*.cpp include/libtorrent/*.hpp
1616
./configure --enable-python-binding --enable-examples=yes --enable-encryption --enable-tests=yes
1717
make dist
1818

19-
VERSION=1.2.16
19+
VERSION=1.2.17
2020

2121
tar xvzf libtorrent-rasterbar-${VERSION}.tar.gz
2222
cd libtorrent-rasterbar-${VERSION}/test

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
AC_PREREQ([2.63])
77

8-
AC_INIT([libtorrent-rasterbar],[1.2.16],[arvid@libtorrent.org],
8+
AC_INIT([libtorrent-rasterbar],[1.2.17],[arvid@libtorrent.org],
99
[libtorrent-rasterbar],[http://www.libtorrent.org])
1010
AC_CONFIG_SRCDIR([src/torrent.cpp])
1111
AC_CONFIG_AUX_DIR([build-aux])

docs/header.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
:Author: Arvid Norberg, arvid@libtorrent.org
2-
:Version: 1.2.16
2+
:Version: 1.2.17
33

docs/hunspell/libtorrent.dic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -545,7 +545,7 @@ cpp
545545
tos
546546
BP
547547
qB
548-
LT12G0
548+
LT12H0
549549
iocontrol
550550
getname
551551
getpeername

include/libtorrent/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,14 +37,14 @@ POSSIBILITY OF SUCH DAMAGE.
3737

3838
#define LIBTORRENT_VERSION_MAJOR 1
3939
#define LIBTORRENT_VERSION_MINOR 2
40-
#define LIBTORRENT_VERSION_TINY 16
40+
#define LIBTORRENT_VERSION_TINY 17
4141

4242
// the format of this version is: MMmmtt
4343
// M = Major version, m = minor version, t = tiny version
4444
#define LIBTORRENT_VERSION_NUM ((LIBTORRENT_VERSION_MAJOR * 10000) + (LIBTORRENT_VERSION_MINOR * 100) + LIBTORRENT_VERSION_TINY)
4545

46-
#define LIBTORRENT_VERSION "1.2.16.0"
47-
#define LIBTORRENT_REVISION "175c20a89"
46+
#define LIBTORRENT_VERSION "1.2.17.0"
47+
#define LIBTORRENT_REVISION "0aa7657aa"
4848

4949
namespace libtorrent {
5050

src/settings_pack.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ constexpr int CLOSE_FILE_INTERVAL = 0;
124124
SET(proxy_username, "", &session_impl::update_proxy),
125125
SET(proxy_password, "", &session_impl::update_proxy),
126126
SET(i2p_hostname, "", &session_impl::update_i2p_bridge),
127-
SET(peer_fingerprint, "-LT12G0-", nullptr),
127+
SET(peer_fingerprint, "-LT12H0-", nullptr),
128128
SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes)
129129
}});
130130

0 commit comments

Comments
 (0)