mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Release 0.2.15
This commit is contained in:
parent
79eb17aeac
commit
d93e795cfe
|
@ -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.
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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])
|
||||
|
|
|
@ -1 +1 @@
|
|||
739b0d6d431aa5cfd73e81002f09733ec44740c8de8f38eed651dc26c8c9a102 /usr/local/bin/tox-bootstrapd
|
||||
64e519c68f23246ea4f490bdc2973d8bc1217da802596ad550048d3767b7214a /usr/local/bin/tox-bootstrapd
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user