diff --git a/ChangeLog b/ChangeLog index bdf6cd76f50..8e8410514df 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ +1.2.19 released + * back-port load_torrent_*() functions * fix issue with odd piece sizes diff --git a/Jamfile b/Jamfile index 730c5045181..24f27fd7d38 100644 --- a/Jamfile +++ b/Jamfile @@ -868,7 +868,7 @@ rule generate-pkg-config ( properties * ) local libname = [ $(props[2]).name ] ; props = $(props[1]) ; - local FULL_VERSION = 1.2.18 ; + local FULL_VERSION = 1.2.19 ; p = [ install-paths $(properties) ] ; diff --git a/bindings/python/setup.cfg b/bindings/python/setup.cfg index 03960f46cbb..9b3b35e3f2b 100644 --- a/bindings/python/setup.cfg +++ b/bindings/python/setup.cfg @@ -1,5 +1,5 @@ [metadata] -version = 1.2.18 +version = 1.2.19 [build_ext] cxxstd = 11 diff --git a/build_dist.sh b/build_dist.sh index 6b7fd477132..f3e58a5b530 100755 --- a/build_dist.sh +++ b/build_dist.sh @@ -16,7 +16,7 @@ chmod a-x docs/*.rst docs/*.htm* src/*.cpp include/libtorrent/*.hpp ./configure --enable-python-binding --enable-examples=yes --enable-encryption --enable-tests=yes make dist -VERSION=1.2.18 +VERSION=1.2.19 tar xvzf libtorrent-rasterbar-${VERSION}.tar.gz cd libtorrent-rasterbar-${VERSION}/test diff --git a/configure.ac b/configure.ac index d338bfd4318..ef41873d1a3 100644 --- a/configure.ac +++ b/configure.ac @@ -5,7 +5,7 @@ AC_PREREQ([2.63]) -AC_INIT([libtorrent-rasterbar],[1.2.18],[arvid@libtorrent.org], +AC_INIT([libtorrent-rasterbar],[1.2.19],[arvid@libtorrent.org], [libtorrent-rasterbar],[http://www.libtorrent.org]) AC_CONFIG_SRCDIR([src/torrent.cpp]) AC_CONFIG_AUX_DIR([build-aux]) diff --git a/docs/header.rst b/docs/header.rst index be1f7f24d44..4c6be467ca6 100644 --- a/docs/header.rst +++ b/docs/header.rst @@ -1,3 +1,3 @@ :Author: Arvid Norberg, arvid@libtorrent.org -:Version: 1.2.18 +:Version: 1.2.19 diff --git a/docs/hunspell/libtorrent.dic b/docs/hunspell/libtorrent.dic index b5360c91e7a..fe2f7db5b05 100644 --- a/docs/hunspell/libtorrent.dic +++ b/docs/hunspell/libtorrent.dic @@ -545,7 +545,7 @@ cpp tos BP qB -LT12I0 +LT12J0 iocontrol getname getpeername diff --git a/include/libtorrent/version.hpp b/include/libtorrent/version.hpp index 0efca36b136..605ace478f3 100644 --- a/include/libtorrent/version.hpp +++ b/include/libtorrent/version.hpp @@ -37,14 +37,14 @@ POSSIBILITY OF SUCH DAMAGE. #define LIBTORRENT_VERSION_MAJOR 1 #define LIBTORRENT_VERSION_MINOR 2 -#define LIBTORRENT_VERSION_TINY 18 +#define LIBTORRENT_VERSION_TINY 19 // 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 "1.2.18.0" -#define LIBTORRENT_REVISION "c362f5f11" +#define LIBTORRENT_VERSION "1.2.19.0" +#define LIBTORRENT_REVISION "e2d32cd44" namespace libtorrent { diff --git a/src/settings_pack.cpp b/src/settings_pack.cpp index 737cba75cf4..939e5a46a25 100644 --- a/src/settings_pack.cpp +++ b/src/settings_pack.cpp @@ -124,7 +124,7 @@ constexpr int CLOSE_FILE_INTERVAL = 0; 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, "-LT12I0-", nullptr), + SET(peer_fingerprint, "-LT12J0-", nullptr), SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes) }});