summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregory Mullen (grayhatter) <greg@grayhatter.com>2016-10-23 18:14:51 -0700
committerGregory Mullen (grayhatter) <greg@grayhatter.com>2016-10-30 11:16:16 -0700
commit60e15f165e79368675e65fb6db5ce09e6d3adeac (patch)
treedd7b2a04aa8a161d60086ce4c78687a83c87ca1a
parenta1af74fb7a3d0edd0a2b21a6ab018dd2a83d9ece (diff)
Version Patch v0.0.2
-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 13fd9eb1..5af6833e 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 "0") 8set(PROJECT_VERSION_MINOR "0")
9set(PROJECT_VERSION_PATCH "1") 9set(PROJECT_VERSION_PATCH "2")
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 1496ba84..8eb65e98 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.0.1]) 5AC_INIT([tox], [0.0.2])
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 aeac79d7..61410bc8 100644
--- a/toxcore/tox.api.h
+++ b/toxcore/tox.api.h
@@ -179,7 +179,7 @@ const VERSION_MINOR = 0;
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 = 1; 182const VERSION_PATCH = 2;
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 c98aed38..2b9f8208 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 1 183#define TOX_VERSION_PATCH 2
184 184
185uint32_t tox_version_patch(void); 185uint32_t tox_version_patch(void);
186 186