summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2016-12-11 19:26:21 +0000
committeriphydf <iphydf@users.noreply.github.com>2016-12-14 09:35:59 +0000
commit7d2f2e4607080ebf5155b43050c62af4f14b9c88 (patch)
tree121628e63ad9ce29e13ea42be2b0d77d07d0469e
parentbb0fbf94ae571f4199f763b0a758c57448b8ebd5 (diff)
Release 0.1.0.
Fixes #216.
-rw-r--r--CMakeLists.txt4
-rw-r--r--configure.ac2
-rw-r--r--toxcore/tox.api.h4
-rw-r--r--toxcore/tox.h4
4 files changed, 7 insertions, 7 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index bf41fb7b..7262ce5e 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -5,8 +5,8 @@ include(CTest)
5# This version is for the entire project. All libraries (core, av, ...) move in 5# This version is for the entire project. All libraries (core, av, ...) move in
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 "1")
9set(PROJECT_VERSION_PATCH "5") 9set(PROJECT_VERSION_PATCH "0")
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 246b6c76..36541c85 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.5]) 5AC_INIT([tox], [0.1.0])
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 2717bd02..8cc35b8b 100644
--- a/toxcore/tox.api.h
+++ b/toxcore/tox.api.h
@@ -173,13 +173,13 @@ const VERSION_MAJOR = 0;
173 * breaking the API or ABI. Set to 0 when the major version number is 173 * breaking the API or ABI. Set to 0 when the major version number is
174 * incremented. 174 * incremented.
175 */ 175 */
176const VERSION_MINOR = 0; 176const VERSION_MINOR = 1;
177 177
178/** 178/**
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 = 0;
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 6d23aaf8..5057e148 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -172,7 +172,7 @@ uint32_t tox_version_major(void);
172 * breaking the API or ABI. Set to 0 when the major version number is 172 * breaking the API or ABI. Set to 0 when the major version number is
173 * incremented. 173 * incremented.
174 */ 174 */
175#define TOX_VERSION_MINOR 0 175#define TOX_VERSION_MINOR 1
176 176
177uint32_t tox_version_minor(void); 177uint32_t tox_version_minor(void);
178 178
@@ -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 5 183#define TOX_VERSION_PATCH 0
184 184
185uint32_t tox_version_patch(void); 185uint32_t tox_version_patch(void);
186 186