From d93e795cfe18c5102b8f80c56e8d6f4ec2a810f0 Mon Sep 17 00:00:00 2001 From: Robin Linden Date: Sun, 6 Feb 2022 04:40:03 +0100 Subject: [PATCH] Release 0.2.15 --- CHANGELOG.md | 8 ++++++++ CMakeLists.txt | 2 +- configure.ac | 2 +- other/bootstrap_daemon/docker/tox-bootstrapd.sha256 | 2 +- so.version | 4 ++-- toxcore/tox.h | 2 +- 6 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6e81ca0d..d3cb6d8d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,16 @@ +## v0.2.15 + +### Merged PRs: + +- [#1984](https://github.com/TokTok/c-toxcore/pull/1984) fix: Reduce logging verbosity even more. +- [#1980](https://github.com/TokTok/c-toxcore/pull/1980) fix: Reduce logging verbosity in TCP server. + ## v0.2.14 ### Merged PRs: +- [#1978](https://github.com/TokTok/c-toxcore/pull/1978) chore: Release 0.2.14 - [#1976](https://github.com/TokTok/c-toxcore/pull/1976) docs: Make crypto_core.h appear on doxygen. - [#1975](https://github.com/TokTok/c-toxcore/pull/1975) refactor: use proper method for generating random numbers in a range - [#1974](https://github.com/TokTok/c-toxcore/pull/1974) docs: Add doxygen configuration and netlify publishing. diff --git a/CMakeLists.txt b/CMakeLists.txt index 690fe72f..bd2368cf 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -30,7 +30,7 @@ list(APPEND CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake) # versions in a synchronised way. set(PROJECT_VERSION_MAJOR "0") set(PROJECT_VERSION_MINOR "2") -set(PROJECT_VERSION_PATCH "14") +set(PROJECT_VERSION_PATCH "15") set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") # set .so library version / following libtool scheme diff --git a/configure.ac b/configure.ac index 3ae3f882..10e36613 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.2.14]) +AC_INIT([tox], [0.2.15]) AC_CONFIG_AUX_DIR(configure_aux) AC_CONFIG_SRCDIR([toxcore/net_crypto.c]) AM_INIT_AUTOMAKE([foreign 1.10 -Wall subdir-objects tar-ustar]) diff --git a/other/bootstrap_daemon/docker/tox-bootstrapd.sha256 b/other/bootstrap_daemon/docker/tox-bootstrapd.sha256 index 7e879aa2..ec765e55 100644 --- a/other/bootstrap_daemon/docker/tox-bootstrapd.sha256 +++ b/other/bootstrap_daemon/docker/tox-bootstrapd.sha256 @@ -1 +1 @@ -739b0d6d431aa5cfd73e81002f09733ec44740c8de8f38eed651dc26c8c9a102 /usr/local/bin/tox-bootstrapd +64e519c68f23246ea4f490bdc2973d8bc1217da802596ad550048d3767b7214a /usr/local/bin/tox-bootstrapd diff --git a/so.version b/so.version index 689d9d6d..a7d65ffa 100644 --- a/so.version +++ b/so.version @@ -11,6 +11,6 @@ # For a full reference see: # https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info -CURRENT=16 +CURRENT=17 REVISION=0 -AGE=14 +AGE=15 diff --git a/toxcore/tox.h b/toxcore/tox.h index 4d3ec0cf..38ec9f4b 100644 --- a/toxcore/tox.h +++ b/toxcore/tox.h @@ -156,7 +156,7 @@ uint32_t tox_version_minor(void); * Incremented when bugfixes are applied without changing any functionality or * API or ABI. */ -#define TOX_VERSION_PATCH 14 +#define TOX_VERSION_PATCH 15 uint32_t tox_version_patch(void);