Skip to content

Commit e9bbf16

Browse files
committed
bump version (2.0.6)
1 parent 7cf79a8 commit e9bbf16

File tree

8 files changed

+14
-12
lines changed

8 files changed

+14
-12
lines changed

ChangeLog

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
* 2.0.6 released
2+
13
* fix issue creating a v2 torrent from torrent_info containing an empty file
24
* make recheck files also update which files use partfile
35
* add write_through disk_io_write_mode, which flushes pieces to disk immediately

Jamfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import cast ;
1212

1313
# we need version numbers in the form X.Y.Z in order to trigger the built-in
1414
# support for generating symlinks to the installed library
15-
VERSION = 2.0.5 ;
15+
VERSION = 2.0.6 ;
1616

1717
BOOST_ROOT = [ modules.peek : BOOST_ROOT ] ;
1818
CXXFLAGS = [ modules.peek : CXXFLAGS ] ;

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION=2.0.5
1+
VERSION=2.0.6
22

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

bindings/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ def _configure_b2_with_distutils(self):
448448

449449
setuptools.setup(
450450
name="libtorrent",
451-
version="2.0.5",
451+
version="2.0.6",
452452
author="Arvid Norberg",
453453
author_email="arvid@libtorrent.org",
454454
description="Python bindings for libtorrent-rasterbar",

docs/header.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
:Version: 2.0.5
1+
:Version: 2.0.6

docs/hunspell/libtorrent.dic

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -551,7 +551,7 @@ cpp
551551
tos
552552
BP
553553
qB
554-
LT2050
554+
LT2060
555555
iocontrol
556556
getname
557557
getpeername

include/libtorrent/version.hpp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,27 +39,27 @@ POSSIBILITY OF SUCH DAMAGE.
3939

4040
#define LIBTORRENT_VERSION_MAJOR 2
4141
#define LIBTORRENT_VERSION_MINOR 0
42-
#define LIBTORRENT_VERSION_TINY 5
42+
#define LIBTORRENT_VERSION_TINY 6
4343

4444
// the format of this version is: MMmmtt
4545
// M = Major version, m = minor version, t = tiny version
4646
#define LIBTORRENT_VERSION_NUM ((LIBTORRENT_VERSION_MAJOR * 10000) + (LIBTORRENT_VERSION_MINOR * 100) + LIBTORRENT_VERSION_TINY)
4747

48-
#define LIBTORRENT_VERSION "2.0.5.0"
49-
#define LIBTORRENT_REVISION "1d12efa88"
48+
#define LIBTORRENT_VERSION "2.0.6.0"
49+
#define LIBTORRENT_REVISION "7cf79a8d1"
5050

5151
namespace libtorrent {
5252

5353
// the major, minor and tiny versions of libtorrent
5454
constexpr int version_major = 2;
5555
constexpr int version_minor = 0;
56-
constexpr int version_tiny = 5;
56+
constexpr int version_tiny = 6;
5757

5858
// the libtorrent version in string form
59-
constexpr char const* version_str = "2.0.5.0";
59+
constexpr char const* version_str = "2.0.6.0";
6060

6161
// the git commit of this libtorrent version
62-
constexpr std::uint64_t version_revision = 0x1d12efa88;
62+
constexpr std::uint64_t version_revision = 0x7cf79a8d1;
6363

6464
// returns the libtorrent version as string form in this format:
6565
// "<major>.<minor>.<tiny>.<tag>"

src/settings_pack.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ constexpr int DISK_WRITE_MODE = settings_pack::enable_os_cache;
148148
SET(proxy_username, "", &session_impl::update_proxy),
149149
SET(proxy_password, "", &session_impl::update_proxy),
150150
SET(i2p_hostname, "", &session_impl::update_i2p_bridge),
151-
SET(peer_fingerprint, "-LT2050-", nullptr),
151+
SET(peer_fingerprint, "-LT2060-", nullptr),
152152
SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes)
153153
}});
154154

0 commit comments

Comments
 (0)