summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CMakeLists.txt2
-rw-r--r--configure.ac2
-rw-r--r--toxcore/tox.api.h2
-rw-r--r--toxcore/tox.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index e0f5d123..77d871af 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -6,7 +6,7 @@ include(CTest)
6# versions in a synchronised way. 6# versions in a synchronised way.
7set(PROJECT_VERSION_MAJOR "0") 7set(PROJECT_VERSION_MAJOR "0")
8set(PROJECT_VERSION_MINOR "1") 8set(PROJECT_VERSION_MINOR "1")
9set(PROJECT_VERSION_PATCH "2") 9set(PROJECT_VERSION_PATCH "3")
10set(PROJECT_VERSION 10set(PROJECT_VERSION
11 "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") 11 "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
12 12
diff --git a/configure.ac b/configure.ac
index 2dbed474..dbbda824 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.2]) 5AC_INIT([tox], [0.1.3])
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/toxcore/tox.api.h b/toxcore/tox.api.h
index 24c582c5..061d5ede 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 = 2; 182const VERSION_PATCH = 3;
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 dd868ff8..559f8f53 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 2 183#define TOX_VERSION_PATCH 3
184 184
185uint32_t tox_version_patch(void); 185uint32_t tox_version_patch(void);
186 186