summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--configure.ac2
-rw-r--r--so.version4
-rw-r--r--toxcore/tox.api.h2
4 files changed, 5 insertions, 5 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 52a52dee..bf3cc06a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -15,7 +15,7 @@ set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
15# versions in a synchronised way. 15# versions in a synchronised way.
16set(PROJECT_VERSION_MAJOR "0") 16set(PROJECT_VERSION_MAJOR "0")
17set(PROJECT_VERSION_MINOR "1") 17set(PROJECT_VERSION_MINOR "1")
18set(PROJECT_VERSION_PATCH "5") 18set(PROJECT_VERSION_PATCH "6")
19set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") 19set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
20 20
21# set .so library version / following libtool scheme 21# set .so library version / following libtool scheme
diff --git a/configure.ac b/configure.ac
index 026407cf..7f942e40 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.5]) 5AC_INIT([tox], [0.1.6])
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 6f60339f..f4e24551 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=6 14CURRENT=7
15REVISION=0 15REVISION=0
16AGE=5 16AGE=6
diff --git a/toxcore/tox.api.h b/toxcore/tox.api.h
index 20cdc2b7..da86d018 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 = 5; 182const VERSION_PATCH = 6;
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