From e9bbf16bdd899f42aef0f0c2b1f214de2c15ac92 Mon Sep 17 00:00:00 2001 From: arvidn Date: Sat, 16 Apr 2022 16:07:52 +0200 Subject: [PATCH] bump version (2.0.6) --- ChangeLog | 2 ++ Jamfile | 2 +- Makefile | 2 +- bindings/python/setup.py | 2 +- docs/header.rst | 2 +- docs/hunspell/libtorrent.dic | 2 +- include/libtorrent/version.hpp | 12 ++++++------ src/settings_pack.cpp | 2 +- 8 files changed, 14 insertions(+), 12 deletions(-) diff --git a/ChangeLog b/ChangeLog index 49464af8b02..f4b24a43894 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +* 2.0.6 released + * fix issue creating a v2 torrent from torrent_info containing an empty file * make recheck files also update which files use partfile * add write_through disk_io_write_mode, which flushes pieces to disk immediately diff --git a/Jamfile b/Jamfile index 30efdc2f055..a8c476b35cf 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.5 ; +VERSION = 2.0.6 ; BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ; CXXFLAGS = [ modules.peek : CXXFLAGS ] ; diff --git a/Makefile b/Makefile index 44179799c36..6a6552f63b6 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=2.0.5 +VERSION=2.0.6 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 5662e3d3e4c..66dd4956018 100644 --- a/bindings/python/setup.py +++ b/bindings/python/setup.py @@ -448,7 +448,7 @@ def _configure_b2_with_distutils(self): setuptools.setup( name="libtorrent", - version="2.0.5", + version="2.0.6", 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 12e7e696163..4cfda992014 100644 --- a/docs/header.rst +++ b/docs/header.rst @@ -1 +1 @@ -:Version: 2.0.5 +:Version: 2.0.6 diff --git a/docs/hunspell/libtorrent.dic b/docs/hunspell/libtorrent.dic index 2f68dfdcfb3..86e36a805c7 100644 --- a/docs/hunspell/libtorrent.dic +++ b/docs/hunspell/libtorrent.dic @@ -551,7 +551,7 @@ cpp tos BP qB -LT2050 +LT2060 iocontrol getname getpeername diff --git a/include/libtorrent/version.hpp b/include/libtorrent/version.hpp index 004bef07099..8f26104be76 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 5 +#define LIBTORRENT_VERSION_TINY 6 // 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.5.0" -#define LIBTORRENT_REVISION "1d12efa88" +#define LIBTORRENT_VERSION "2.0.6.0" +#define LIBTORRENT_REVISION "7cf79a8d1" namespace libtorrent { // the major, minor and tiny versions of libtorrent constexpr int version_major = 2; constexpr int version_minor = 0; - constexpr int version_tiny = 5; + constexpr int version_tiny = 6; // the libtorrent version in string form - constexpr char const* version_str = "2.0.5.0"; + constexpr char const* version_str = "2.0.6.0"; // the git commit of this libtorrent version - constexpr std::uint64_t version_revision = 0x1d12efa88; + constexpr std::uint64_t version_revision = 0x7cf79a8d1; // returns the libtorrent version as string form in this format: // "..." diff --git a/src/settings_pack.cpp b/src/settings_pack.cpp index 2b613df702b..f0ab8e94602 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, "-LT2050-", nullptr), + SET(peer_fingerprint, "-LT2060-", nullptr), SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes) }});