Skip to content

Commit d93e795

Browse files
committed
Release 0.2.15
1 parent 79eb17a commit d93e795

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,16 @@
11

2+
## v0.2.15
3+
4+
### Merged PRs:
5+
6+
- [#1984](https://github.com/TokTok/c-toxcore/pull/1984) fix: Reduce logging verbosity even more.
7+
- [#1980](https://github.com/TokTok/c-toxcore/pull/1980) fix: Reduce logging verbosity in TCP server.
8+
29
## v0.2.14
310

411
### Merged PRs:
512

13+
- [#1978](https://github.com/TokTok/c-toxcore/pull/1978) chore: Release 0.2.14
614
- [#1976](https://github.com/TokTok/c-toxcore/pull/1976) docs: Make crypto_core.h appear on doxygen.
715
- [#1975](https://github.com/TokTok/c-toxcore/pull/1975) refactor: use proper method for generating random numbers in a range
816
- [#1974](https://github.com/TokTok/c-toxcore/pull/1974) docs: Add doxygen configuration and netlify publishing.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ list(APPEND CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
3030
# versions in a synchronised way.
3131
set(PROJECT_VERSION_MAJOR "0")
3232
set(PROJECT_VERSION_MINOR "2")
33-
set(PROJECT_VERSION_PATCH "14")
33+
set(PROJECT_VERSION_PATCH "15")
3434
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
3535

3636
# 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.2.14])
5+
AC_INIT([tox], [0.2.15])
66
AC_CONFIG_AUX_DIR(configure_aux)
77
AC_CONFIG_SRCDIR([toxcore/net_crypto.c])
88
AM_INIT_AUTOMAKE([foreign 1.10 -Wall subdir-objects tar-ustar])
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
739b0d6d431aa5cfd73e81002f09733ec44740c8de8f38eed651dc26c8c9a102 /usr/local/bin/tox-bootstrapd
1+
64e519c68f23246ea4f490bdc2973d8bc1217da802596ad550048d3767b7214a /usr/local/bin/tox-bootstrapd

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=16
14+
CURRENT=17
1515
REVISION=0
16-
AGE=14
16+
AGE=15

toxcore/tox.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ uint32_t tox_version_minor(void);
156156
* Incremented when bugfixes are applied without changing any functionality or
157157
* API or ABI.
158158
*/
159-
#define TOX_VERSION_PATCH 14
159+
#define TOX_VERSION_PATCH 15
160160

161161
uint32_t tox_version_patch(void);
162162

0 commit comments

Comments
 (0)