From 7d2f2e4607080ebf5155b43050c62af4f14b9c88 Mon Sep 17 00:00:00 2001 From: iphydf Date: Sun, 11 Dec 2016 19:26:21 +0000 Subject: Release 0.1.0. Fixes #216. --- CMakeLists.txt | 4 ++-- configure.ac | 2 +- toxcore/tox.api.h | 4 ++-- toxcore/tox.h | 4 ++-- 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) # This version is for the entire project. All libraries (core, av, ...) move in # versions in a synchronised way. set(PROJECT_VERSION_MAJOR "0") -set(PROJECT_VERSION_MINOR "0") -set(PROJECT_VERSION_PATCH "5") +set(PROJECT_VERSION_MINOR "1") +set(PROJECT_VERSION_PATCH "0") set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") diff --git a/configure.ac b/configure.ac index 246b6c76..36541c85 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.0.5]) +AC_INIT([tox], [0.1.0]) 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 2717bd02..8cc35b8b 100644 --- a/toxcore/tox.api.h +++ b/toxcore/tox.api.h @@ -173,13 +173,13 @@ const VERSION_MAJOR = 0; * breaking the API or ABI. Set to 0 when the major version number is * incremented. */ -const VERSION_MINOR = 0; +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 = 5; +const VERSION_PATCH = 0; /** * 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); * breaking the API or ABI. Set to 0 when the major version number is * incremented. */ -#define TOX_VERSION_MINOR 0 +#define TOX_VERSION_MINOR 1 uint32_t tox_version_minor(void); @@ -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 5 +#define TOX_VERSION_PATCH 0 uint32_t tox_version_patch(void); -- cgit v1.2.3