merged patch from RC_0_16

This commit is contained in:
Arvid Norberg 2012-06-10 16:20:00 +00:00
parent df5a4464ef
commit 1db4fae595
13 changed files with 14 additions and 13 deletions

View File

@ -231,7 +231,7 @@ set_target_properties(torrent-rasterbar PROPERTIES
SOVERSION 1
VERSION 1)
set (VERSION "0.16.0")
set (VERSION "0.16.1")
get_property (COMPILETIME_OPTIONS_LIST
DIRECTORY ${CMAKE_CURRENT_SOURCE_DIRECTORY}

View File

@ -1,3 +1,4 @@
0.16.1 release
* fixed crash when providing corrupt resume data
* fixed support for boost-1.44

View File

@ -23,7 +23,7 @@ if $(BOOST_ROOT)
use-project /boost : $(BOOST_ROOT) ;
}
VERSION = 0.16.0 ;
VERSION = 0.16.1 ;
# rule for linking the correct libraries depending
# on features and target-os

View File

@ -5,7 +5,7 @@
AC_PREREQ([2.63])
AC_INIT([libtorrent-rasterbar],[0.16.0],[arvid@cs.umu.se],
AC_INIT([libtorrent-rasterbar],[0.16.1],[arvid@cs.umu.se],
[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@rasterbar.com
:Version: 0.16.0
:Version: 0.16.1
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ libtorrent manual
=================
:Author: Arvid Norberg, arvid@rasterbar.com
:Version: 0.16.0
:Version: 0.16.1
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ libtorrent manual
=================
:Author: Arvid Norberg, arvid@rasterbar.com
:Version: 0.16.0
:Version: 0.16.1
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ libtorrent hacking
==================
:Author: Arvid Norberg, arvid@rasterbar.com
:Version: 0.16.0
:Version: 0.16.1
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ creating torrents
=================
:Author: Arvid Norberg, arvid@rasterbar.com
:Version: 0.16.0
:Version: 0.16.1
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ libtorrent API Documentation
============================
:Author: Arvid Norberg, arvid@rasterbar.com
:Version: 0.16.0
:Version: 0.16.1
.. contents:: Table of contents
:depth: 1

View File

@ -3,7 +3,7 @@ libtorrent manual
=================
:Author: Arvid Norberg, arvid@rasterbar.com
:Version: 0.16.0
:Version: 0.16.1
.. contents:: Table of contents
:depth: 2

View File

@ -3,7 +3,7 @@ libtorrent manual
=================
:Author: Arvid Norberg, arvid@rasterbar.com
:Version: 0.16.0
:Version: 0.16.1
.. contents:: Table of contents
:depth: 2

View File

@ -35,13 +35,13 @@ POSSIBILITY OF SUCH DAMAGE.
#define LIBTORRENT_VERSION_MAJOR 0
#define LIBTORRENT_VERSION_MINOR 16
#define LIBTORRENT_VERSION_TINY 0
#define LIBTORRENT_VERSION_TINY 1
// 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 "0.16.0.0"
#define LIBTORRENT_VERSION "0.16.1.0"
#define LIBTORRENT_REVISION "$Rev$"
#endif