diff --git a/ChangeLog b/ChangeLog index 62a0f0d6cd7..06de8be737c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ +2.0.10 released + * allow on_unknown_torrent method in the absence of active torrents (new plugin feature added) + * add feature to async_move_storage() to not move files + * fix reject resume data if it contains mismatching info hashes + * fix clear the candidate_cache when clear peer_list * fix missing python converter for dht::announce_flags_t 2.0.9 released diff --git a/Jamfile b/Jamfile index 9a9b0dfeefc..1e35e5a2963 100644 --- a/Jamfile +++ b/Jamfile @@ -12,7 +12,7 @@ import cast ; # we need version numbers in the form X.Y.Z in order to trigger the built-in # support for generating symlinks to the installed library -VERSION = 2.0.9 ; +VERSION = 2.0.10 ; BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ; CXXFLAGS = [ modules.peek : CXXFLAGS ] ; diff --git a/Makefile b/Makefile index 5eedd404b1c..cf67552383b 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=2.0.9 +VERSION=2.0.10 BUILD_CONFIG=release link=shared crypto=openssl warnings=off address-model=64 diff --git a/bindings/python/setup.cfg b/bindings/python/setup.cfg index f95b5b8a28d..3b6e8031ddc 100644 --- a/bindings/python/setup.cfg +++ b/bindings/python/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 2.0.9 +version = 2.0.10 [build_ext] cxxstd = 14 diff --git a/docs/header.rst b/docs/header.rst index cdfef908808..fff8a7cffde 100644 --- a/docs/header.rst +++ b/docs/header.rst @@ -1 +1 @@ -:Version: 2.0.9 +:Version: 2.0.10 diff --git a/docs/hunspell/libtorrent.dic b/docs/hunspell/libtorrent.dic index 0697d409e68..1b0993710f3 100644 --- a/docs/hunspell/libtorrent.dic +++ b/docs/hunspell/libtorrent.dic @@ -551,7 +551,7 @@ cpp tos BP qB -LT2090 +LT20A0 iocontrol getname getpeername diff --git a/include/libtorrent/version.hpp b/include/libtorrent/version.hpp index cc136f58125..914af9104d7 100644 --- a/include/libtorrent/version.hpp +++ b/include/libtorrent/version.hpp @@ -39,27 +39,27 @@ POSSIBILITY OF SUCH DAMAGE. #define LIBTORRENT_VERSION_MAJOR 2 #define LIBTORRENT_VERSION_MINOR 0 -#define LIBTORRENT_VERSION_TINY 9 +#define LIBTORRENT_VERSION_TINY 10 // the format of this version is: MMmmtt // M = Major version, m = minor version, t = tiny version #define LIBTORRENT_VERSION_NUM ((LIBTORRENT_VERSION_MAJOR * 10000) + (LIBTORRENT_VERSION_MINOR * 100) + LIBTORRENT_VERSION_TINY) -#define LIBTORRENT_VERSION "2.0.9.0" -#define LIBTORRENT_REVISION "559e52ca3" +#define LIBTORRENT_VERSION "2.0.10.0" +#define LIBTORRENT_REVISION "dacf64c50" namespace libtorrent { // the major, minor and tiny versions of libtorrent constexpr int version_major = 2; constexpr int version_minor = 0; - constexpr int version_tiny = 9; + constexpr int version_tiny = 10; // the libtorrent version in string form - constexpr char const* version_str = "2.0.9.0"; + constexpr char const* version_str = "2.0.10.0"; // the git commit of this libtorrent version - constexpr std::uint64_t version_revision = 0x559e52ca3; + constexpr std::uint64_t version_revision = 0xdacf64c50; // returns the libtorrent version as string form in this format: // "..." diff --git a/src/settings_pack.cpp b/src/settings_pack.cpp index bf368e3587a..6d401c8389b 100644 --- a/src/settings_pack.cpp +++ b/src/settings_pack.cpp @@ -148,7 +148,7 @@ constexpr int DISK_WRITE_MODE = settings_pack::enable_os_cache; SET(proxy_username, "", &session_impl::update_proxy), SET(proxy_password, "", &session_impl::update_proxy), SET(i2p_hostname, "", &session_impl::update_i2p_bridge), - SET(peer_fingerprint, "-LT2090-", nullptr), + SET(peer_fingerprint, "-LT20A0-", nullptr), SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes) }}); diff --git a/test/test_settings_pack.cpp b/test/test_settings_pack.cpp index 36e2c74967d..9981239fc16 100644 --- a/test/test_settings_pack.cpp +++ b/test/test_settings_pack.cpp @@ -194,7 +194,7 @@ TORRENT_TEST(clear_single_string) sp.clear(settings_pack::user_agent); // when cleared, we'll get the default value - TEST_EQUAL(sp.get_str(settings_pack::user_agent), "libtorrent/2.0.9.0"); + TEST_EQUAL(sp.get_str(settings_pack::user_agent), "libtorrent/2.0.10.0"); } TORRENT_TEST(duplicates)