Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version for future release #7621

Merged
merged 1 commit into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
2.0.11 not released

2.0.10 released

* allow on_unknown_torrent method in the absence of active torrents (new plugin feature added)
Expand Down
2 changes: 1 addition & 1 deletion Jamfile
Original file line number Diff line number Diff line change
Expand Up @@ -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.10 ;
VERSION = 2.0.11 ;

BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
CXXFLAGS = [ modules.peek : CXXFLAGS ] ;
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
VERSION=2.0.10
VERSION=2.0.11

BUILD_CONFIG=release link=shared crypto=openssl warnings=off address-model=64

Expand Down
2 changes: 1 addition & 1 deletion bindings/python/setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[metadata]
version = 2.0.10
version = 2.0.11

[build_ext]
cxxstd = 14
2 changes: 1 addition & 1 deletion docs/header.rst
Original file line number Diff line number Diff line change
@@ -1 +1 @@
:Version: 2.0.10
:Version: 2.0.11
2 changes: 1 addition & 1 deletion docs/hunspell/libtorrent.dic
Original file line number Diff line number Diff line change
Expand Up @@ -551,7 +551,7 @@ cpp
tos
BP
qB
LT20A0
LT20B0
iocontrol
getname
getpeername
Expand Down
12 changes: 6 additions & 6 deletions include/libtorrent/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,27 +39,27 @@ POSSIBILITY OF SUCH DAMAGE.

#define LIBTORRENT_VERSION_MAJOR 2
#define LIBTORRENT_VERSION_MINOR 0
#define LIBTORRENT_VERSION_TINY 10
#define LIBTORRENT_VERSION_TINY 11

// 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.10.0"
#define LIBTORRENT_REVISION "dacf64c50"
#define LIBTORRENT_VERSION "2.0.11.0"
#define LIBTORRENT_REVISION "74bc93a37"

namespace libtorrent {

// the major, minor and tiny versions of libtorrent
constexpr int version_major = 2;
constexpr int version_minor = 0;
constexpr int version_tiny = 10;
constexpr int version_tiny = 11;

// the libtorrent version in string form
constexpr char const* version_str = "2.0.10.0";
constexpr char const* version_str = "2.0.11.0";

// the git commit of this libtorrent version
constexpr std::uint64_t version_revision = 0xdacf64c50;
constexpr std::uint64_t version_revision = 0x74bc93a37;

// returns the libtorrent version as string form in this format:
// "<major>.<minor>.<tiny>.<tag>"
Expand Down
2 changes: 1 addition & 1 deletion src/settings_pack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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, "-LT20A0-", nullptr),
SET(peer_fingerprint, "-LT20B0-", nullptr),
SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes)
}});

Expand Down
2 changes: 1 addition & 1 deletion test/test_settings_pack.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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.10.0");
TEST_EQUAL(sp.get_str(settings_pack::user_agent), "libtorrent/2.0.11.0");
}

TORRENT_TEST(duplicates)
Expand Down
Loading