mirror of
https://github.com/arvidn/libtorrent.git
synced 2026-05-06 07:56:47 -04:00
bump version to 2.0.12
This commit is contained in:
committed by
Arvid Norberg
parent
078a3e7223
commit
740a0b9aea
@@ -1,4 +1,4 @@
|
||||
2.0.12
|
||||
2.0.12 released
|
||||
|
||||
* fix issue where file priorities could be cleared by force recheck
|
||||
* fix issue in XML parser
|
||||
|
||||
@@ -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.11 ;
|
||||
VERSION = 2.0.12 ;
|
||||
|
||||
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
|
||||
CXXFLAGS = [ modules.peek : CXXFLAGS ] ;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
VERSION=2.0.11
|
||||
VERSION=2.0.12
|
||||
|
||||
BUILD_CONFIG=release link=shared crypto=openssl warnings=off address-model=64
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
[metadata]
|
||||
version = 2.0.11
|
||||
version = 2.0.12
|
||||
|
||||
[build_ext]
|
||||
cxxstd = 14
|
||||
|
||||
+1
-1
@@ -1 +1 @@
|
||||
:Version: 2.0.11
|
||||
:Version: 2.0.12
|
||||
|
||||
@@ -551,7 +551,7 @@ cpp
|
||||
tos
|
||||
BP
|
||||
qB
|
||||
LT20B0
|
||||
LT20C0
|
||||
iocontrol
|
||||
getname
|
||||
getpeername
|
||||
|
||||
@@ -39,27 +39,27 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
#define LIBTORRENT_VERSION_MAJOR 2
|
||||
#define LIBTORRENT_VERSION_MINOR 0
|
||||
#define LIBTORRENT_VERSION_TINY 11
|
||||
#define LIBTORRENT_VERSION_TINY 12
|
||||
|
||||
// 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.11.0"
|
||||
#define LIBTORRENT_REVISION "6e1587799"
|
||||
#define LIBTORRENT_VERSION "2.0.12.0"
|
||||
#define LIBTORRENT_REVISION "078a3e722"
|
||||
|
||||
namespace libtorrent {
|
||||
|
||||
// the major, minor and tiny versions of libtorrent
|
||||
constexpr int version_major = 2;
|
||||
constexpr int version_minor = 0;
|
||||
constexpr int version_tiny = 11;
|
||||
constexpr int version_tiny = 12;
|
||||
|
||||
// the libtorrent version in string form
|
||||
constexpr char const* version_str = "2.0.11.0";
|
||||
constexpr char const* version_str = "2.0.12.0";
|
||||
|
||||
// the git commit of this libtorrent version
|
||||
constexpr std::uint64_t version_revision = 0x6e1587799;
|
||||
constexpr std::uint64_t version_revision = 0x078a3e722;
|
||||
|
||||
// returns the libtorrent version as string form in this format:
|
||||
// "<major>.<minor>.<tiny>.<tag>"
|
||||
|
||||
+1
-1
@@ -1,7 +1,7 @@
|
||||
[project]
|
||||
name = "libtorrent"
|
||||
requires-python = ">=3.9"
|
||||
version = "2.0.11"
|
||||
version = "2.0.12"
|
||||
|
||||
[tool.cibuildwheel]
|
||||
skip = "{pp*,}"
|
||||
|
||||
@@ -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, "-LT20B0-", nullptr),
|
||||
SET(peer_fingerprint, "-LT20C0-", nullptr),
|
||||
SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes),
|
||||
SET(natpmp_gateway, "", nullptr)
|
||||
}});
|
||||
|
||||
@@ -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.11.0");
|
||||
TEST_EQUAL(sp.get_str(settings_pack::user_agent), "libtorrent/2.0.12.0");
|
||||
}
|
||||
|
||||
TORRENT_TEST(duplicates)
|
||||
|
||||
Reference in New Issue
Block a user