Skip to content

Commit

Permalink
Release 0.1.0.
Browse files Browse the repository at this point in the history
Fixes TokTok#216.
  • Loading branch information
iphydf committed Dec 13, 2016
1 parent b14b8d0 commit 35f78fc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Expand Up @@ -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}")

Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -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])
Expand Down
4 changes: 2 additions & 2 deletions toxcore/tox.api.h
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions toxcore/tox.h
Expand Up @@ -172,15 +172,15 @@ 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);

/**
* 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);

Expand Down

0 comments on commit 35f78fc

Please sign in to comment.