diff --git a/CHANGELOG.md b/CHANGELOG.md index e3275a16..40f43341 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,9 +1,37 @@ +## v0.1.11 + +### Merged PRs: + +- [#643](https://github.com/TokTok/c-toxcore/pull/643) Add .editorconfig +- [#637](https://github.com/TokTok/c-toxcore/pull/637) Update tox-bootstrapd Dockerfile +- [#635](https://github.com/TokTok/c-toxcore/pull/635) Separate FreeBSD Travis build in 2 stages +- [#632](https://github.com/TokTok/c-toxcore/pull/632) Lift libconfig to v1.7.1 +- [#631](https://github.com/TokTok/c-toxcore/pull/631) Add aspcud for Opam +- [#630](https://github.com/TokTok/c-toxcore/pull/630) Fix for Travis fail on addr_resolve testing +- [#623](https://github.com/TokTok/c-toxcore/pull/623) Split video payload into multiple RTP messages when too big to fit into one +- [#615](https://github.com/TokTok/c-toxcore/pull/615) forget DHT pubkey of offline friend after DHT timeout +- [#611](https://github.com/TokTok/c-toxcore/pull/611) Fix typo +- [#607](https://github.com/TokTok/c-toxcore/pull/607) set onion pingid timeout to announce timeout (300s) +- [#592](https://github.com/TokTok/c-toxcore/pull/592) Adjust docs of few toxencrypt function to the code +- [#587](https://github.com/TokTok/c-toxcore/pull/587) Fix tox test +- [#586](https://github.com/TokTok/c-toxcore/pull/586) Improve LAN discovery +- [#576](https://github.com/TokTok/c-toxcore/pull/576) Replace include(CTest) on enable_testing() +- [#574](https://github.com/TokTok/c-toxcore/pull/574) Reset hole-punching parameters after not punching for a while +- [#571](https://github.com/TokTok/c-toxcore/pull/571) Configure needs to find libsodium headers. +- [#515](https://github.com/TokTok/c-toxcore/pull/515) Network cleanup: reduce dependency on system-defined constants +- [#505](https://github.com/TokTok/c-toxcore/pull/505) Add FreeBSD Travis +- [#500](https://github.com/TokTok/c-toxcore/pull/500) Fixed the bug when receipts for messages sent from the receipt callback never arrived. + +### Closed issues: + +- [#493](https://github.com/TokTok/c-toxcore/issues/493) Receipts for messages sent from the receipt callback never arrive ## v0.1.10 ### Merged PRs: +- [#575](https://github.com/TokTok/c-toxcore/pull/575) Release v0.1.10 - [#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 diff --git a/CMakeLists.txt b/CMakeLists.txt index 79f07e9d..41b89597 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 "10") +set(PROJECT_VERSION_PATCH "11") 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 1ff861cd..c4b7a25f 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.10]) +AC_INIT([tox], [0.1.11]) 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 03e4ec8c..9594e0ff 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=11 +CURRENT=12 REVISION=0 -AGE=10 +AGE=11 diff --git a/toxcore/tox.api.h b/toxcore/tox.api.h index 0763c778..ce0b3a36 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 = 10; +const VERSION_PATCH = 11; /** * A macro to check at preprocessing time whether the client code is compatible diff --git a/toxcore/tox.h b/toxcore/tox.h index 30bc9509..cb9c4fa0 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 10 +#define TOX_VERSION_PATCH 11 uint32_t tox_version_patch(void);