Skip to content

Commit 740a0b9

Browse files
committed
bump version to 2.0.12
1 parent 078a3e7 commit 740a0b9

10 files changed

Lines changed: 15 additions & 15 deletions

File tree

ChangeLog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
2.0.12
1+
2.0.12 released
22

33
* fix issue where file priorities could be cleared by force recheck
44
* fix issue in XML parser

Jamfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import cast ;
1212

1313
# we need version numbers in the form X.Y.Z in order to trigger the built-in
1414
# support for generating symlinks to the installed library
15-
VERSION = 2.0.11 ;
15+
VERSION = 2.0.12 ;
1616

1717
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
1818
CXXFLAGS = [ modules.peek : CXXFLAGS ] ;

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=2.0.11
1+
VERSION=2.0.12
22

33
BUILD_CONFIG=release link=shared crypto=openssl warnings=off address-model=64
44

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 = 2.0.11
2+
version = 2.0.12
33

44
[build_ext]
55
cxxstd = 14

docs/header.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
:Version: 2.0.11
1+
:Version: 2.0.12

docs/hunspell/libtorrent.dic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ cpp
551551
tos
552552
BP
553553
qB
554-
LT20B0
554+
LT20C0
555555
iocontrol
556556
getname
557557
getpeername

include/libtorrent/version.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,27 +39,27 @@ POSSIBILITY OF SUCH DAMAGE.
3939

4040
#define LIBTORRENT_VERSION_MAJOR 2
4141
#define LIBTORRENT_VERSION_MINOR 0
42-
#define LIBTORRENT_VERSION_TINY 11
42+
#define LIBTORRENT_VERSION_TINY 12
4343

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

48-
#define LIBTORRENT_VERSION "2.0.11.0"
49-
#define LIBTORRENT_REVISION "6e1587799"
48+
#define LIBTORRENT_VERSION "2.0.12.0"
49+
#define LIBTORRENT_REVISION "078a3e722"
5050

5151
namespace libtorrent {
5252

5353
// the major, minor and tiny versions of libtorrent
5454
constexpr int version_major = 2;
5555
constexpr int version_minor = 0;
56-
constexpr int version_tiny = 11;
56+
constexpr int version_tiny = 12;
5757

5858
// the libtorrent version in string form
59-
constexpr char const* version_str = "2.0.11.0";
59+
constexpr char const* version_str = "2.0.12.0";
6060

6161
// the git commit of this libtorrent version
62-
constexpr std::uint64_t version_revision = 0x6e1587799;
62+
constexpr std::uint64_t version_revision = 0x078a3e722;
6363

6464
// returns the libtorrent version as string form in this format:
6565
// "<major>.<minor>.<tiny>.<tag>"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "libtorrent"
33
requires-python = ">=3.9"
4-
version = "2.0.11"
4+
version = "2.0.12"
55

66
[tool.cibuildwheel]
77
skip = "{pp*,}"

src/settings_pack.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ constexpr int DISK_WRITE_MODE = settings_pack::enable_os_cache;
148148
SET(proxy_username, "", &session_impl::update_proxy),
149149
SET(proxy_password, "", &session_impl::update_proxy),
150150
SET(i2p_hostname, "", &session_impl::update_i2p_bridge),
151-
SET(peer_fingerprint, "-LT20B0-", nullptr),
151+
SET(peer_fingerprint, "-LT20C0-", nullptr),
152152
SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes),
153153
SET(natpmp_gateway, "", nullptr)
154154
}});

test/test_settings_pack.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ TORRENT_TEST(clear_single_string)
194194
sp.clear(settings_pack::user_agent);
195195

196196
// when cleared, we'll get the default value
197-
TEST_EQUAL(sp.get_str(settings_pack::user_agent), "libtorrent/2.0.11.0");
197+
TEST_EQUAL(sp.get_str(settings_pack::user_agent), "libtorrent/2.0.12.0");
198198
}
199199

200200
TORRENT_TEST(duplicates)

0 commit comments

Comments
 (0)