diff --git a/CMakeLists.txt b/CMakeLists.txt index ad13b1f53..d4bcc040d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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} diff --git a/ChangeLog b/ChangeLog index fb9002154..8416271c4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,4 @@ +0.16.1 release * fixed crash when providing corrupt resume data * fixed support for boost-1.44 diff --git a/Jamfile b/Jamfile index f75540a9b..35cb8cf61 100755 --- a/Jamfile +++ b/Jamfile @@ -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 diff --git a/configure.ac b/configure.ac index 9c3c6e431..3ece674fc 100644 --- a/configure.ac +++ b/configure.ac @@ -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]) diff --git a/docs/building.rst b/docs/building.rst index 5f3214590..9bd40de41 100644 --- a/docs/building.rst +++ b/docs/building.rst @@ -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 diff --git a/docs/contributing.rst b/docs/contributing.rst index 45efb524c..64d63a234 100644 --- a/docs/contributing.rst +++ b/docs/contributing.rst @@ -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 diff --git a/docs/features.rst b/docs/features.rst index 9fd9bf250..7c5e3212c 100644 --- a/docs/features.rst +++ b/docs/features.rst @@ -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 diff --git a/docs/hacking.rst b/docs/hacking.rst index 357cda9cc..4435d2fd6 100644 --- a/docs/hacking.rst +++ b/docs/hacking.rst @@ -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 diff --git a/docs/make_torrent.rst b/docs/make_torrent.rst index 024e28392..9a3778bc4 100644 --- a/docs/make_torrent.rst +++ b/docs/make_torrent.rst @@ -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 diff --git a/docs/manual.rst b/docs/manual.rst index 05775c765..ebff7a7bf 100644 --- a/docs/manual.rst +++ b/docs/manual.rst @@ -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 diff --git a/docs/tuning.rst b/docs/tuning.rst index 904ddf42b..5fe363d55 100644 --- a/docs/tuning.rst +++ b/docs/tuning.rst @@ -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 diff --git a/docs/utp.rst b/docs/utp.rst index b744109b7..7f424a2e3 100644 --- a/docs/utp.rst +++ b/docs/utp.rst @@ -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 diff --git a/include/libtorrent/version.hpp b/include/libtorrent/version.hpp index 6e88df676..b9adafa0e 100644 --- a/include/libtorrent/version.hpp +++ b/include/libtorrent/version.hpp @@ -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