bump version to 1.1.9

This commit is contained in:
Arvid Norberg 2018-07-20 10:02:04 +02:00 committed by Arvid Norberg
parent 1ebc5f9ef2
commit 2f56fa6c3e
23 changed files with 26 additions and 24 deletions

View File

@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.8)
project(libtorrent)
set (SOVERSION "8")
set (VERSION "1.1.8")
set (VERSION "1.1.9")
set(sources
web_connection_base

View File

@ -1,3 +1,5 @@
1.1.9 release
* uTP connections are no longer exempt from rate limits by default
* fix exporting files from partfile while seeding
* fix potential deadlock on Windows, caused by performing restricted

View File

@ -57,7 +57,7 @@ else
: : $(boost-include-path) ;
}
VERSION = 1.1.8 ;
VERSION = 1.1.9 ;
rule linking ( properties * )
{

View File

@ -154,7 +154,7 @@ else:
libraries = ['torrent-rasterbar'] + flags.libraries)]
setup(name = 'python-libtorrent',
version = '1.1.8',
version = '1.1.9',
author = 'Arvid Norberg',
author_email = 'arvid@libtorrent.org',
description = 'Python bindings for libtorrent-rasterbar',

View File

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

View File

@ -3,7 +3,7 @@ libtorrent manual
=================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ libtorrent manual
=================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ BitTorrent extension for DHT RSS feeds
======================================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ BitTorrent DHT security extension
=================================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ BitTorrent extension for arbitrary DHT store
============================================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ libtorrent Examples
===================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ libtorrent manual
=================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -1027,7 +1027,7 @@ for cat in categories:
out.write('''
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
`home`__

View File

@ -3,7 +3,7 @@ libtorrent hacking
==================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -1,5 +1,5 @@
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. raw:: html

View File

@ -3,7 +3,7 @@ libtorrent API Documentation
============================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 1

View File

@ -3,7 +3,7 @@ libtorrent manual
=================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ libtorrent manual
=================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ libtorrent manual
=================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ libtorrent manual
=================
:Author: Arvid Norberg, arvid@libtorrent.org
:Version: 1.1.8
:Version: 1.1.9
.. contents:: Table of contents
:depth: 2

View File

@ -37,14 +37,14 @@ POSSIBILITY OF SUCH DAMAGE.
#define LIBTORRENT_VERSION_MAJOR 1
#define LIBTORRENT_VERSION_MINOR 1
#define LIBTORRENT_VERSION_TINY 8
#define LIBTORRENT_VERSION_TINY 9
// 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.1.8.0"
#define LIBTORRENT_REVISION "78d9c284e"
#define LIBTORRENT_VERSION "1.1.9.0"
#define LIBTORRENT_REVISION "1ebc5f9ef"
namespace libtorrent {

View File

@ -148,7 +148,7 @@ namespace libtorrent
SET_NOPREV(proxy_username, "", &session_impl::update_proxy),
SET_NOPREV(proxy_password, "", &session_impl::update_proxy),
SET_NOPREV(i2p_hostname, "", &session_impl::update_i2p_bridge),
SET_NOPREV(peer_fingerprint, "-LT1180-", 0),
SET_NOPREV(peer_fingerprint, "-LT1190-", 0),
SET_NOPREV(dht_bootstrap_nodes, "dht.libtorrent.org:25401", &session_impl::update_dht_bootstrap_nodes)
};

View File

@ -10,7 +10,7 @@ version = (int(sys.argv[1]), int(sys.argv[2]), int(sys.argv[3]), int(sys.argv[4]
def v(version):
ret = ()
for i in version:
if i < 9: ret = ret + (chr(ord('0') + i),)
if i < 10: ret = ret + (chr(ord('0') + i),)
else: ret = ret + (chr(ord('A') + i - 10),)
return ret