bump version to 1.2.4

This commit is contained in:
arvidn 2020-02-03 14:18:33 +01:00 committed by Arvid Norberg
parent 8dffe0def0
commit 86183358e9
9 changed files with 12 additions and 10 deletions

View File

@ -1,3 +1,5 @@
1.2.4 release
* fix suggest_read_cache setting * fix suggest_read_cache setting
* back-off tracker hostname looksups resulting in NXDOMAIN * back-off tracker hostname looksups resulting in NXDOMAIN
* lower SOCKS5 UDP keepalive timeout * lower SOCKS5 UDP keepalive timeout

View File

@ -45,7 +45,7 @@ else
: : $(boost-include-path) <include>/usr/local/include ; : : $(boost-include-path) <include>/usr/local/include ;
} }
VERSION = 1.2.3 ; VERSION = 1.2.4 ;
rule linking ( properties * ) rule linking ( properties * )
{ {

View File

@ -182,7 +182,7 @@ else:
setup( setup(
name='python-libtorrent', name='python-libtorrent',
version='1.2.3', version='1.2.4',
author='Arvid Norberg', author='Arvid Norberg',
author_email='arvid@libtorrent.org', author_email='arvid@libtorrent.org',
description='Python bindings for libtorrent-rasterbar', description='Python bindings for libtorrent-rasterbar',

View File

@ -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 ./configure --enable-python-binding --enable-examples=yes --enable-encryption --enable-tests=yes
make dist make dist
VERSION=1.2.3 VERSION=1.2.4
tar xvzf libtorrent-rasterbar-${VERSION}.tar.gz tar xvzf libtorrent-rasterbar-${VERSION}.tar.gz
cd libtorrent-rasterbar-${VERSION}/test cd libtorrent-rasterbar-${VERSION}/test

View File

@ -5,7 +5,7 @@
AC_PREREQ([2.63]) AC_PREREQ([2.63])
AC_INIT([libtorrent-rasterbar],[1.2.3],[arvid@libtorrent.org], AC_INIT([libtorrent-rasterbar],[1.2.4],[arvid@libtorrent.org],
[libtorrent-rasterbar],[http://www.libtorrent.org]) [libtorrent-rasterbar],[http://www.libtorrent.org])
AC_CONFIG_SRCDIR([src/torrent.cpp]) AC_CONFIG_SRCDIR([src/torrent.cpp])
AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_AUX_DIR([build-aux])

View File

@ -1,3 +1,3 @@
:Author: Arvid Norberg, arvid@libtorrent.org :Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.2.3 :Version: 1.2.4

View File

@ -546,7 +546,7 @@ cpp
tos tos
BP BP
qB qB
LT1230 LT1240
iocontrol iocontrol
getname getname
getpeername getpeername

View File

@ -37,14 +37,14 @@ POSSIBILITY OF SUCH DAMAGE.
#define LIBTORRENT_VERSION_MAJOR 1 #define LIBTORRENT_VERSION_MAJOR 1
#define LIBTORRENT_VERSION_MINOR 2 #define LIBTORRENT_VERSION_MINOR 2
#define LIBTORRENT_VERSION_TINY 3 #define LIBTORRENT_VERSION_TINY 4
// the format of this version is: MMmmtt // the format of this version is: MMmmtt
// M = Major version, m = minor version, t = tiny version // 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_NUM ((LIBTORRENT_VERSION_MAJOR * 10000) + (LIBTORRENT_VERSION_MINOR * 100) + LIBTORRENT_VERSION_TINY)
#define LIBTORRENT_VERSION "1.2.3.0" #define LIBTORRENT_VERSION "1.2.4.0"
#define LIBTORRENT_REVISION "922aefbd5" #define LIBTORRENT_REVISION "9344dcc9b"
namespace libtorrent { namespace libtorrent {

View File

@ -124,7 +124,7 @@ constexpr int CLOSE_FILE_INTERVAL = 0;
SET(proxy_username, "", &session_impl::update_proxy), SET(proxy_username, "", &session_impl::update_proxy),
SET(proxy_password, "", &session_impl::update_proxy), SET(proxy_password, "", &session_impl::update_proxy),
SET(i2p_hostname, "", &session_impl::update_i2p_bridge), SET(i2p_hostname, "", &session_impl::update_i2p_bridge),
SET(peer_fingerprint, "-LT1230-", nullptr), SET(peer_fingerprint, "-LT1240-", nullptr),
SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes) SET(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes)
}}); }});