Skip to content

Commit 74bc93a

Browse files
committed
bump version to 2.0.10
1 parent dacf64c commit 74bc93a

File tree

9 files changed

+18
-13
lines changed

9 files changed

+18
-13
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1+
2.0.10 released
2+
13
* allow on_unknown_torrent method in the absence of active torrents (new plugin feature added)
4+
* add feature to async_move_storage() to not move files
5+
* fix reject resume data if it contains mismatching info hashes
6+
* fix clear the candidate_cache when clear peer_list
27
* fix missing python converter for dht::announce_flags_t
38

49
2.0.9 released

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.9 ;
15+
VERSION = 2.0.10 ;
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.9
1+
VERSION=2.0.10
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.9
2+
version = 2.0.10
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.9
1+
:Version: 2.0.10

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-
LT2090
554+
LT20A0
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 9
42+
#define LIBTORRENT_VERSION_TINY 10
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.9.0"
49-
#define LIBTORRENT_REVISION "559e52ca3"
48+
#define LIBTORRENT_VERSION "2.0.10.0"
49+
#define LIBTORRENT_REVISION "dacf64c50"
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 = 9;
56+
constexpr int version_tiny = 10;
5757

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

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

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

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, "-LT2090-", nullptr),
151+
SET(peer_fingerprint, "-LT20A0-", nullptr),
152152
SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes)
153153
}});
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.9.0");
197+
TEST_EQUAL(sp.get_str(settings_pack::user_agent), "libtorrent/2.0.10.0");
198198
}
199199

200200
TORRENT_TEST(duplicates)

0 commit comments

Comments
 (0)