summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md8
-rw-r--r--CMakeLists.txt2
-rw-r--r--configure.ac2
-rw-r--r--so.version4
-rw-r--r--toxcore/tox.api.h2
-rw-r--r--toxcore/tox.h2
6 files changed, 14 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 73a7b6c2..e3275a16 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,17 @@
1 1
2 2
3## v0.1.10
4
5### Merged PRs:
6
7- [#564](https://github.com/TokTok/c-toxcore/pull/564) Fix Windows build
8- [#542](https://github.com/TokTok/c-toxcore/pull/542) Save bandwidth by moderating onion pinging
9
3## v0.1.9 10## v0.1.9
4 11
5### Merged PRs: 12### Merged PRs:
6 13
14- [#563](https://github.com/TokTok/c-toxcore/pull/563) Release v0.1.9
7- [#561](https://github.com/TokTok/c-toxcore/pull/561) Remove unused variable 15- [#561](https://github.com/TokTok/c-toxcore/pull/561) Remove unused variable
8- [#560](https://github.com/TokTok/c-toxcore/pull/560) Fix non-portable zeroing out of doubles 16- [#560](https://github.com/TokTok/c-toxcore/pull/560) Fix non-portable zeroing out of doubles
9- [#559](https://github.com/TokTok/c-toxcore/pull/559) Fix theoretical memory leaks 17- [#559](https://github.com/TokTok/c-toxcore/pull/559) Fix theoretical memory leaks
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a9be3f88..ba48f035 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,7 +14,7 @@ set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
14# versions in a synchronised way. 14# versions in a synchronised way.
15set(PROJECT_VERSION_MAJOR "0") 15set(PROJECT_VERSION_MAJOR "0")
16set(PROJECT_VERSION_MINOR "1") 16set(PROJECT_VERSION_MINOR "1")
17set(PROJECT_VERSION_PATCH "9") 17set(PROJECT_VERSION_PATCH "10")
18set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") 18set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
19 19
20# set .so library version / following libtool scheme 20# set .so library version / following libtool scheme
diff --git a/configure.ac b/configure.ac
index 6b447534..38e3dd82 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
2# Process this file with autoconf to produce a configure script. 2# Process this file with autoconf to produce a configure script.
3 3
4AC_PREREQ([2.65]) 4AC_PREREQ([2.65])
5AC_INIT([tox], [0.1.9]) 5AC_INIT([tox], [0.1.10])
6AC_CONFIG_AUX_DIR(configure_aux) 6AC_CONFIG_AUX_DIR(configure_aux)
7AC_CONFIG_SRCDIR([toxcore/net_crypto.c]) 7AC_CONFIG_SRCDIR([toxcore/net_crypto.c])
8AC_CONFIG_HEADERS([config.h]) 8AC_CONFIG_HEADERS([config.h])
diff --git a/so.version b/so.version
index 1a27ed97..03e4ec8c 100644
--- a/so.version
+++ b/so.version
@@ -11,6 +11,6 @@
11# For a full reference see: 11# For a full reference see:
12# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info 12# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
13 13
14CURRENT=10 14CURRENT=11
15REVISION=0 15REVISION=0
16AGE=9 16AGE=10
diff --git a/toxcore/tox.api.h b/toxcore/tox.api.h
index d91f589b..0763c778 100644
--- a/toxcore/tox.api.h
+++ b/toxcore/tox.api.h
@@ -179,7 +179,7 @@ const VERSION_MINOR = 1;
179 * The patch or revision number. Incremented when bugfixes are applied without 179 * The patch or revision number. Incremented when bugfixes are applied without
180 * changing any functionality or API or ABI. 180 * changing any functionality or API or ABI.
181 */ 181 */
182const VERSION_PATCH = 9; 182const VERSION_PATCH = 10;
183 183
184/** 184/**
185 * A macro to check at preprocessing time whether the client code is compatible 185 * A macro to check at preprocessing time whether the client code is compatible
diff --git a/toxcore/tox.h b/toxcore/tox.h
index 0e5d27e5..30bc9509 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -180,7 +180,7 @@ uint32_t tox_version_minor(void);
180 * The patch or revision number. Incremented when bugfixes are applied without 180 * The patch or revision number. Incremented when bugfixes are applied without
181 * changing any functionality or API or ABI. 181 * changing any functionality or API or ABI.
182 */ 182 */
183#define TOX_VERSION_PATCH 9 183#define TOX_VERSION_PATCH 10
184 184
185uint32_t tox_version_patch(void); 185uint32_t tox_version_patch(void);
186 186