diff options
author | iphydf <iphydf@users.noreply.github.com> | 2016-12-30 13:34:26 +0000 |
---|---|---|
committer | iphydf <iphydf@users.noreply.github.com> | 2017-01-05 22:02:11 +0000 |
commit | fdb46f6cf216a866d29402ae991be9c43282dde6 (patch) | |
tree | 97698e46de5b229377a136b6bc22a9a8cdc87db2 | |
parent | 59e2a844f04a8725e8079f854158aa86ef5988b2 (diff) |
Release v0.1.3.
-rw-r--r-- | CMakeLists.txt | 2 | ||||
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | toxcore/tox.api.h | 2 | ||||
-rw-r--r-- | toxcore/tox.h | 2 |
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. |
7 | set(PROJECT_VERSION_MAJOR "0") | 7 | set(PROJECT_VERSION_MAJOR "0") |
8 | set(PROJECT_VERSION_MINOR "1") | 8 | set(PROJECT_VERSION_MINOR "1") |
9 | set(PROJECT_VERSION_PATCH "2") | 9 | set(PROJECT_VERSION_PATCH "3") |
10 | set(PROJECT_VERSION | 10 | set(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 | ||
4 | AC_PREREQ([2.65]) | 4 | AC_PREREQ([2.65]) |
5 | AC_INIT([tox], [0.1.2]) | 5 | AC_INIT([tox], [0.1.3]) |
6 | AC_CONFIG_AUX_DIR(configure_aux) | 6 | AC_CONFIG_AUX_DIR(configure_aux) |
7 | AC_CONFIG_SRCDIR([toxcore/net_crypto.c]) | 7 | AC_CONFIG_SRCDIR([toxcore/net_crypto.c]) |
8 | AC_CONFIG_HEADERS([config.h]) | 8 | AC_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 | */ |
182 | const VERSION_PATCH = 2; | 182 | const 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 | ||
185 | uint32_t tox_version_patch(void); | 185 | uint32_t tox_version_patch(void); |
186 | 186 | ||