Version Patch v0.0.4 => v0.0.5

This commit is contained in:
Gregory Mullen (grayhatter) 2016-11-24 18:36:58 -08:00
parent ad517eb1df
commit d6bad9078b
No known key found for this signature in database
GPG Key ID: AEA10D4EA0530876
4 changed files with 4 additions and 4 deletions

View File

@ -6,7 +6,7 @@ include(CTest)
# versions in a synchronised way.
set(PROJECT_VERSION_MAJOR "0")
set(PROJECT_VERSION_MINOR "0")
set(PROJECT_VERSION_PATCH "4")
set(PROJECT_VERSION_PATCH "5")
set(PROJECT_VERSION
"${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")

View File

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

View File

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

View File

@ -180,7 +180,7 @@ uint32_t tox_version_minor(void);
* The patch or revision number. Incremented when bugfixes are applied without
* changing any functionality or API or ABI.
*/
#define TOX_VERSION_PATCH 4
#define TOX_VERSION_PATCH 5
uint32_t tox_version_patch(void);