bump version to 1.2.2
This commit is contained in:
parent
b2c3b4dbf8
commit
baeb959054
|
@ -1,3 +1,5 @@
|
||||||
|
1.2.2 release
|
||||||
|
|
||||||
* fix regression in &left= reporting when adding a seeding torrent
|
* fix regression in &left= reporting when adding a seeding torrent
|
||||||
* fix integer overflow in http parser
|
* fix integer overflow in http parser
|
||||||
* improve sanitation of symlinks, to support more complex link targets
|
* improve sanitation of symlinks, to support more complex link targets
|
||||||
|
|
2
Jamfile
2
Jamfile
|
@ -44,7 +44,7 @@ else
|
||||||
: : $(boost-include-path) ;
|
: : $(boost-include-path) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
VERSION = 1.2.1 ;
|
VERSION = 1.2.2 ;
|
||||||
|
|
||||||
rule linking ( properties * )
|
rule linking ( properties * )
|
||||||
{
|
{
|
||||||
|
|
|
@ -179,7 +179,7 @@ else:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='python-libtorrent',
|
name='python-libtorrent',
|
||||||
version='1.2.1',
|
version='1.2.2',
|
||||||
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',
|
||||||
|
|
|
@ -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.1
|
VERSION=1.2.2
|
||||||
|
|
||||||
tar xvzf libtorrent-rasterbar-${VERSION}.tar.gz
|
tar xvzf libtorrent-rasterbar-${VERSION}.tar.gz
|
||||||
cd libtorrent-rasterbar-${VERSION}/test
|
cd libtorrent-rasterbar-${VERSION}/test
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
AC_PREREQ([2.63])
|
AC_PREREQ([2.63])
|
||||||
|
|
||||||
AC_INIT([libtorrent-rasterbar],[1.2.1],[arvid@libtorrent.org],
|
AC_INIT([libtorrent-rasterbar],[1.2.2],[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])
|
||||||
|
|
|
@ -1,3 +1,3 @@
|
||||||
:Author: Arvid Norberg, arvid@libtorrent.org
|
:Author: Arvid Norberg, arvid@libtorrent.org
|
||||||
:Version: 1.2.1
|
:Version: 1.2.2
|
||||||
|
|
||||||
|
|
|
@ -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 1
|
#define LIBTORRENT_VERSION_TINY 2
|
||||||
|
|
||||||
// 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.1.0"
|
#define LIBTORRENT_VERSION "1.2.2.0"
|
||||||
#define LIBTORRENT_REVISION "f21a39496"
|
#define LIBTORRENT_REVISION "b2c3b4dbf"
|
||||||
|
|
||||||
namespace libtorrent {
|
namespace libtorrent {
|
||||||
|
|
||||||
|
|
|
@ -123,7 +123,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, "-LT1210-", nullptr),
|
SET(peer_fingerprint, "-LT1220-", 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)
|
||||||
}});
|
}});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue