Skip to content

Commit aa9512a

Browse files
committed
bump 1.2 version to 1.2.19
1 parent e2d32cd commit aa9512a

File tree

9 files changed

+12
-10
lines changed

9 files changed

+12
-10
lines changed

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11

2+
1.2.19 released
3+
24
* back-port load_torrent_*() functions
35
* fix issue with odd piece sizes
46

Jamfile

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

871-
local FULL_VERSION = 1.2.18 ;
871+
local FULL_VERSION = 1.2.19 ;
872872

873873
p = [ install-paths $(properties) ] ;
874874

bindings/python/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
version = 1.2.18
2+
version = 1.2.19
33

44
[build_ext]
55
cxxstd = 11

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.18
19+
VERSION=1.2.19
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.18],[arvid@libtorrent.org],
8+
AC_INIT([libtorrent-rasterbar],[1.2.19],[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.18
2+
:Version: 1.2.19
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-
LT12I0
548+
LT12J0
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 18
40+
#define LIBTORRENT_VERSION_TINY 19
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.18.0"
47-
#define LIBTORRENT_REVISION "c362f5f11"
46+
#define LIBTORRENT_VERSION "1.2.19.0"
47+
#define LIBTORRENT_REVISION "e2d32cd44"
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, "-LT12I0-", nullptr),
127+
SET(peer_fingerprint, "-LT12J0-", nullptr),
128128
SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes)
129129
}});
130130

0 commit comments

Comments
 (0)