From 1cc15752a8fd5c3c78a69f390d6131c276d2b02f Mon Sep 17 00:00:00 2001 From: "Vladimir Golovnev (glassez)" Date: Thu, 18 Aug 2022 15:19:31 +0300 Subject: [PATCH] Increase version number of upcoming branch --- Jamfile | 2 +- Makefile | 2 +- bindings/python/setup.py | 2 +- docs/header.rst | 2 +- include/libtorrent/version.hpp | 16 ++++++++-------- src/settings_pack.cpp | 2 +- 6 files changed, 13 insertions(+), 13 deletions(-) diff --git a/Jamfile b/Jamfile index 1cadce98f5e..30ff3f2e368 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.7 ; +VERSION = 2.1.0 ; BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ; ECHO "OS =" [ os.name ] ; diff --git a/Makefile b/Makefile index 4c345c3caab..fce66b35262 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=2.0.7 +VERSION=2.1.0 BUILD_CONFIG=release link=shared crypto=openssl warnings=off address-model=64 diff --git a/bindings/python/setup.py b/bindings/python/setup.py index 481cd2a1871..c91bb8ae22d 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -470,7 +470,7 @@ def find_all_files(path: str) -> Iterator[str]: setuptools.setup( name="libtorrent", - version="2.0.7", + version="2.1.0", author="Arvid Norberg", author_email="arvid@libtorrent.org", description="Python bindings for libtorrent-rasterbar", diff --git a/docs/header.rst b/docs/header.rst index e898029c976..d8dc3caf547 100644 --- a/docs/header.rst +++ b/docs/header.rst @@ -1 +1 @@ -:Version: 2.0.7 +:Version: 2.1.0 diff --git a/include/libtorrent/version.hpp b/include/libtorrent/version.hpp index 1cf0ca845ee..459aea6436f 100644 --- a/include/libtorrent/version.hpp +++ b/include/libtorrent/version.hpp @@ -15,28 +15,28 @@ see LICENSE file. #include #define LIBTORRENT_VERSION_MAJOR 2 -#define LIBTORRENT_VERSION_MINOR 0 -#define LIBTORRENT_VERSION_TINY 7 +#define LIBTORRENT_VERSION_MINOR 1 +#define LIBTORRENT_VERSION_TINY 0 // 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.7.0" -#define LIBTORRENT_REVISION "9cbecaa64" +#define LIBTORRENT_VERSION "2.1.0.0" +#define LIBTORRENT_REVISION "283cea598" namespace libtorrent { // the major, minor and tiny versions of libtorrent constexpr int version_major = 2; - constexpr int version_minor = 0; - constexpr int version_tiny = 7; + constexpr int version_minor = 1; + constexpr int version_tiny = 0; // the libtorrent version in string form - constexpr char const* version_str = "2.0.7.0"; + constexpr char const* version_str = "2.1.0.0"; // the git commit of this libtorrent version - constexpr std::uint64_t version_revision = 0x9cbecaa64; + constexpr std::uint64_t version_revision = 0x283cea598; // returns the libtorrent version as string form in this format: // "..." diff --git a/src/settings_pack.cpp b/src/settings_pack.cpp index 12e69cedc05..0280bcfd3e4 100644 --- a/src/settings_pack.cpp +++ b/src/settings_pack.cpp @@ -126,7 +126,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, "-LT2070-", nullptr), + SET(peer_fingerprint, "-LT2100-", nullptr), SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes), SET(webtorrent_stun_server, "stun.l.google.com:19302", nullptr) }});