Skip to content

Commit 2e537ee

Browse files
committed
bump version for 1.2.20
1 parent 0772624 commit 2e537ee

File tree

10 files changed

+13
-10
lines changed

10 files changed

+13
-10
lines changed

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
1.2.20 released
2+
13
* validate add_torrent_params::save_path at run-time
24
* use stricter rules for what filenames are valid on Android
35
* fix piece size check when loading torrents

Jamfile

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

873-
local FULL_VERSION = 1.2.19 ;
873+
local FULL_VERSION = 1.2.20 ;
874874

875875
p = [ install-paths $(properties) ] ;
876876

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.19
2+
version = "1.2.20",
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.19
19+
VERSION=1.2.20
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.19],[arvid@libtorrent.org],
8+
AC_INIT([libtorrent-rasterbar],[1.2.20],[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.19
2+
:Version: 1.2.20
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-
LT12J0
548+
LT12K0
549549
iocontrol
550550
getname
551551
getpeername

include/libtorrent/aux_/numeric_cast.hpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ POSSIBILITY OF SUCH DAMAGE.
3535

3636
#include <type_traits>
3737
#include <limits>
38+
#include <cstdint> // for int64_t
3839

3940
#include "libtorrent/assert.hpp"
4041

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 19
40+
#define LIBTORRENT_VERSION_TINY 20
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.19.0"
47-
#define LIBTORRENT_REVISION "e2d32cd44"
46+
#define LIBTORRENT_VERSION "1.2.20.0"
47+
#define LIBTORRENT_REVISION "077262424"
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, "-LT12J0-", nullptr),
127+
SET(peer_fingerprint, "-LT12K0-", nullptr),
128128
SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes)
129129
}});
130130

0 commit comments

Comments
 (0)