summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2017-01-12 15:48:39 +0000
committeriphydf <iphydf@users.noreply.github.com>2017-01-12 15:48:39 +0000
commit27a97a8280813ec05a5209811c40ab23203bb292 (patch)
treef7f70341f9d53999ad551313b67a58bc82d39590
parent64807652223f27de23e7173e3fa6ca7eb2ff9351 (diff)
Release v0.1.4.
-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 bd70ab38..5b475da1 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 "3") 9set(PROJECT_VERSION_PATCH "4")
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 eb16c0e0..bdf64dc2 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.3]) 5AC_INIT([tox], [0.1.4])
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 061d5ede..13330753 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 = 3; 182const VERSION_PATCH = 4;
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 559f8f53..bd8dfa7b 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 3 183#define TOX_VERSION_PATCH 4
184 184
185uint32_t tox_version_patch(void); 185uint32_t tox_version_patch(void);
186 186