diff --git a/CMakeLists.txt b/CMakeLists.txt index 7262ce5e58..8ce60a1b30 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ include(CTest) # versions in a synchronised way. set(PROJECT_VERSION_MAJOR "0") set(PROJECT_VERSION_MINOR "1") -set(PROJECT_VERSION_PATCH "0") +set(PROJECT_VERSION_PATCH "1") set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") diff --git a/configure.ac b/configure.ac index 36541c8546..e7d9f6f70b 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.65]) -AC_INIT([tox], [0.1.0]) +AC_INIT([tox], [0.1.1]) AC_CONFIG_AUX_DIR(configure_aux) AC_CONFIG_SRCDIR([toxcore/net_crypto.c]) AC_CONFIG_HEADERS([config.h]) diff --git a/toxcore/tox.api.h b/toxcore/tox.api.h index d30ad41fdb..2767a62fc2 100644 --- a/toxcore/tox.api.h +++ b/toxcore/tox.api.h @@ -179,7 +179,7 @@ const VERSION_MINOR = 1; * The patch or revision number. Incremented when bugfixes are applied without * changing any functionality or API or ABI. */ -const VERSION_PATCH = 0; +const VERSION_PATCH = 1; /** * A macro to check at preprocessing time whether the client code is compatible diff --git a/toxcore/tox.h b/toxcore/tox.h index 602ec3c4bd..5497d9e77a 100644 --- a/toxcore/tox.h +++ b/toxcore/tox.h @@ -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 0 +#define TOX_VERSION_PATCH 1 uint32_t tox_version_patch(void);