diff --git a/CHANGELOG.md b/CHANGELOG.md index 73a7b6c24b..e3275a16df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,17 @@ +## v0.1.10 + +### Merged PRs: + +- [#564](https://github.com/TokTok/c-toxcore/pull/564) Fix Windows build +- [#542](https://github.com/TokTok/c-toxcore/pull/542) Save bandwidth by moderating onion pinging + ## v0.1.9 ### Merged PRs: +- [#563](https://github.com/TokTok/c-toxcore/pull/563) Release v0.1.9 - [#561](https://github.com/TokTok/c-toxcore/pull/561) Remove unused variable - [#560](https://github.com/TokTok/c-toxcore/pull/560) Fix non-portable zeroing out of doubles - [#559](https://github.com/TokTok/c-toxcore/pull/559) Fix theoretical memory leaks diff --git a/CMakeLists.txt b/CMakeLists.txt index a9be3f8814..ba48f035ff 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake) # versions in a synchronised way. set(PROJECT_VERSION_MAJOR "0") set(PROJECT_VERSION_MINOR "1") -set(PROJECT_VERSION_PATCH "9") +set(PROJECT_VERSION_PATCH "10") set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") # set .so library version / following libtool scheme diff --git a/configure.ac b/configure.ac index 6b44753472..38e3dd8225 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.65]) -AC_INIT([tox], [0.1.9]) +AC_INIT([tox], [0.1.10]) AC_CONFIG_AUX_DIR(configure_aux) AC_CONFIG_SRCDIR([toxcore/net_crypto.c]) AC_CONFIG_HEADERS([config.h]) diff --git a/so.version b/so.version index 1a27ed97aa..03e4ec8c67 100644 --- a/so.version +++ b/so.version @@ -11,6 +11,6 @@ # For a full reference see: # https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info -CURRENT=10 +CURRENT=11 REVISION=0 -AGE=9 +AGE=10 diff --git a/toxcore/tox.api.h b/toxcore/tox.api.h index d91f589b51..0763c7789d 100644 --- a/toxcore/tox.api.h +++ b/toxcore/tox.api.h @@ -179,7 +179,7 @@ const VERSION_MINOR = 1; * The patch or revision number. Incremented when bugfixes are applied without * changing any functionality or API or ABI. */ -const VERSION_PATCH = 9; +const VERSION_PATCH = 10; /** * A macro to check at preprocessing time whether the client code is compatible diff --git a/toxcore/tox.h b/toxcore/tox.h index 0e5d27e503..30bc950964 100644 --- a/toxcore/tox.h +++ b/toxcore/tox.h @@ -180,7 +180,7 @@ uint32_t tox_version_minor(void); * The patch or revision number. Incremented when bugfixes are applied without * changing any functionality or API or ABI. */ -#define TOX_VERSION_PATCH 9 +#define TOX_VERSION_PATCH 10 uint32_t tox_version_patch(void);