Skip to content

Commit a429ef4

Browse files
committed
Release v0.1.9
1 parent b02f68b commit a429ef4

File tree

6 files changed

+330
-299
lines changed

6 files changed

+330
-299
lines changed

CHANGELOG.md

Lines changed: 324 additions & 293 deletions
Large diffs are not rendered by default.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
1414
# versions in a synchronised way.
1515
set(PROJECT_VERSION_MAJOR "0")
1616
set(PROJECT_VERSION_MINOR "1")
17-
set(PROJECT_VERSION_PATCH "8")
17+
set(PROJECT_VERSION_PATCH "9")
1818
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
1919

2020
# set .so library version / following libtool scheme

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.65])
5-
AC_INIT([tox], [0.1.8])
5+
AC_INIT([tox], [0.1.9])
66
AC_CONFIG_AUX_DIR(configure_aux)
77
AC_CONFIG_SRCDIR([toxcore/net_crypto.c])
88
AC_CONFIG_HEADERS([config.h])

so.version

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
# For a full reference see:
1212
# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
1313

14-
CURRENT=9
14+
CURRENT=10
1515
REVISION=0
16-
AGE=8
16+
AGE=9

toxcore/tox.api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ const VERSION_MINOR = 1;
179179
* The patch or revision number. Incremented when bugfixes are applied without
180180
* changing any functionality or API or ABI.
181181
*/
182-
const VERSION_PATCH = 8;
182+
const VERSION_PATCH = 9;
183183

184184
/**
185185
* A macro to check at preprocessing time whether the client code is compatible

toxcore/tox.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ uint32_t tox_version_minor(void);
180180
* The patch or revision number. Incremented when bugfixes are applied without
181181
* changing any functionality or API or ABI.
182182
*/
183-
#define TOX_VERSION_PATCH 8
183+
#define TOX_VERSION_PATCH 9
184184

185185
uint32_t tox_version_patch(void);
186186

0 commit comments

Comments
 (0)