File tree Expand file tree Collapse file tree 6 files changed +330
-299
lines changed Expand file tree Collapse file tree 6 files changed +330
-299
lines changed Load Diff Large diffs are not rendered by default.
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
14
14
# versions in a synchronised way.
15
15
set (PROJECT_VERSION_MAJOR "0" )
16
16
set (PROJECT_VERSION_MINOR "1" )
17
- set (PROJECT_VERSION_PATCH "8 " )
17
+ set (PROJECT_VERSION_PATCH "9 " )
18
18
set (PROJECT_VERSION "${PROJECT_VERSION_MAJOR} .${PROJECT_VERSION_MINOR} .${PROJECT_VERSION_PATCH} " )
19
19
20
20
# set .so library version / following libtool scheme
Original file line number Diff line number Diff line change 2
2
# Process this file with autoconf to produce a configure script.
3
3
4
4
AC_PREREQ ( [ 2.65] )
5
- AC_INIT ( [ tox] , [ 0.1.8 ] )
5
+ AC_INIT ( [ tox] , [ 0.1.9 ] )
6
6
AC_CONFIG_AUX_DIR ( configure_aux )
7
7
AC_CONFIG_SRCDIR ( [ toxcore/net_crypto.c] )
8
8
AC_CONFIG_HEADERS ( [ config.h] )
Original file line number Diff line number Diff line change 11
11
# For a full reference see:
12
12
# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
13
13
14
- CURRENT=9
14
+ CURRENT=10
15
15
REVISION=0
16
- AGE=8
16
+ AGE=9
Original file line number Diff line number Diff line change @@ -179,7 +179,7 @@ const VERSION_MINOR = 1;
179
179
* The patch or revision number. Incremented when bugfixes are applied without
180
180
* changing any functionality or API or ABI.
181
181
*/
182
- const VERSION_PATCH = 8 ;
182
+ const VERSION_PATCH = 9 ;
183
183
184
184
/* *
185
185
* A macro to check at preprocessing time whether the client code is compatible
Original file line number Diff line number Diff line change @@ -180,7 +180,7 @@ uint32_t tox_version_minor(void);
180
180
* The patch or revision number. Incremented when bugfixes are applied without
181
181
* changing any functionality or API or ABI.
182
182
*/
183
- #define TOX_VERSION_PATCH 8
183
+ #define TOX_VERSION_PATCH 9
184
184
185
185
uint32_t tox_version_patch (void );
186
186
You can’t perform that action at this time.
0 commit comments