Release v0.1.6.

This commit is contained in:
iphydf 2017-01-26 22:33:17 +00:00
parent 2f62fa38fc
commit 895de7ef26
No known key found for this signature in database
GPG Key ID: 3855DBA2D74403C9
4 changed files with 5 additions and 5 deletions

View File

@ -15,7 +15,7 @@ set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
# versions in a synchronised way. # versions in a synchronised way.
set(PROJECT_VERSION_MAJOR "0") set(PROJECT_VERSION_MAJOR "0")
set(PROJECT_VERSION_MINOR "1") set(PROJECT_VERSION_MINOR "1")
set(PROJECT_VERSION_PATCH "5") set(PROJECT_VERSION_PATCH "6")
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
# set .so library version / following libtool scheme # set .so library version / following libtool scheme

View File

@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script. # Process this file with autoconf to produce a configure script.
AC_PREREQ([2.65]) AC_PREREQ([2.65])
AC_INIT([tox], [0.1.5]) AC_INIT([tox], [0.1.6])
AC_CONFIG_AUX_DIR(configure_aux) AC_CONFIG_AUX_DIR(configure_aux)
AC_CONFIG_SRCDIR([toxcore/net_crypto.c]) AC_CONFIG_SRCDIR([toxcore/net_crypto.c])
AC_CONFIG_HEADERS([config.h]) AC_CONFIG_HEADERS([config.h])

View File

@ -11,6 +11,6 @@
# For a full reference see: # For a full reference see:
# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info # https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
CURRENT=6 CURRENT=7
REVISION=0 REVISION=0
AGE=5 AGE=6

View File

@ -179,7 +179,7 @@ const VERSION_MINOR = 1;
* The patch or revision number. Incremented when bugfixes are applied without * The patch or revision number. Incremented when bugfixes are applied without
* changing any functionality or API or ABI. * changing any functionality or API or ABI.
*/ */
const VERSION_PATCH = 5; const VERSION_PATCH = 6;
/** /**
* A macro to check at preprocessing time whether the client code is compatible * A macro to check at preprocessing time whether the client code is compatible