mirror of
https://github.com/irungentoo/toxcore.git
synced 2024-03-22 13:30:51 +08:00
Release v0.1.11
This commit is contained in:
parent
df40fd8db0
commit
fc0cc08b21
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -1,9 +1,37 @@
|
|||
|
||||
## v0.1.11
|
||||
|
||||
### Merged PRs:
|
||||
|
||||
- [#643](https://github.com/TokTok/c-toxcore/pull/643) Add .editorconfig
|
||||
- [#637](https://github.com/TokTok/c-toxcore/pull/637) Update tox-bootstrapd Dockerfile
|
||||
- [#635](https://github.com/TokTok/c-toxcore/pull/635) Separate FreeBSD Travis build in 2 stages
|
||||
- [#632](https://github.com/TokTok/c-toxcore/pull/632) Lift libconfig to v1.7.1
|
||||
- [#631](https://github.com/TokTok/c-toxcore/pull/631) Add aspcud for Opam
|
||||
- [#630](https://github.com/TokTok/c-toxcore/pull/630) Fix for Travis fail on addr_resolve testing
|
||||
- [#623](https://github.com/TokTok/c-toxcore/pull/623) Split video payload into multiple RTP messages when too big to fit into one
|
||||
- [#615](https://github.com/TokTok/c-toxcore/pull/615) forget DHT pubkey of offline friend after DHT timeout
|
||||
- [#611](https://github.com/TokTok/c-toxcore/pull/611) Fix typo
|
||||
- [#607](https://github.com/TokTok/c-toxcore/pull/607) set onion pingid timeout to announce timeout (300s)
|
||||
- [#592](https://github.com/TokTok/c-toxcore/pull/592) Adjust docs of few toxencrypt function to the code
|
||||
- [#587](https://github.com/TokTok/c-toxcore/pull/587) Fix tox test
|
||||
- [#586](https://github.com/TokTok/c-toxcore/pull/586) Improve LAN discovery
|
||||
- [#576](https://github.com/TokTok/c-toxcore/pull/576) Replace include(CTest) on enable_testing()
|
||||
- [#574](https://github.com/TokTok/c-toxcore/pull/574) Reset hole-punching parameters after not punching for a while
|
||||
- [#571](https://github.com/TokTok/c-toxcore/pull/571) Configure needs to find libsodium headers.
|
||||
- [#515](https://github.com/TokTok/c-toxcore/pull/515) Network cleanup: reduce dependency on system-defined constants
|
||||
- [#505](https://github.com/TokTok/c-toxcore/pull/505) Add FreeBSD Travis
|
||||
- [#500](https://github.com/TokTok/c-toxcore/pull/500) Fixed the bug when receipts for messages sent from the receipt callback never arrived.
|
||||
|
||||
### Closed issues:
|
||||
|
||||
- [#493](https://github.com/TokTok/c-toxcore/issues/493) Receipts for messages sent from the receipt callback never arrive
|
||||
|
||||
## v0.1.10
|
||||
|
||||
### Merged PRs:
|
||||
|
||||
- [#575](https://github.com/TokTok/c-toxcore/pull/575) Release v0.1.10
|
||||
- [#564](https://github.com/TokTok/c-toxcore/pull/564) Fix Windows build
|
||||
- [#542](https://github.com/TokTok/c-toxcore/pull/542) Save bandwidth by moderating onion pinging
|
||||
|
||||
|
|
|
@ -14,7 +14,7 @@ set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
|
|||
# versions in a synchronised way.
|
||||
set(PROJECT_VERSION_MAJOR "0")
|
||||
set(PROJECT_VERSION_MINOR "1")
|
||||
set(PROJECT_VERSION_PATCH "10")
|
||||
set(PROJECT_VERSION_PATCH "11")
|
||||
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.1.10])
|
||||
AC_INIT([tox], [0.1.11])
|
||||
AC_CONFIG_AUX_DIR(configure_aux)
|
||||
AC_CONFIG_SRCDIR([toxcore/net_crypto.c])
|
||||
AC_CONFIG_HEADERS([config.h])
|
||||
|
|
|
@ -11,6 +11,6 @@
|
|||
# For a full reference see:
|
||||
# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
|
||||
|
||||
CURRENT=11
|
||||
CURRENT=12
|
||||
REVISION=0
|
||||
AGE=10
|
||||
AGE=11
|
||||
|
|
|
@ -179,7 +179,7 @@ const VERSION_MINOR = 1;
|
|||
* The patch or revision number. Incremented when bugfixes are applied without
|
||||
* changing any functionality or API or ABI.
|
||||
*/
|
||||
const VERSION_PATCH = 10;
|
||||
const VERSION_PATCH = 11;
|
||||
|
||||
/**
|
||||
* A macro to check at preprocessing time whether the client code is compatible
|
||||
|
|
|
@ -180,7 +180,7 @@ uint32_t tox_version_minor(void);
|
|||
* The patch or revision number. Incremented when bugfixes are applied without
|
||||
* changing any functionality or API or ABI.
|
||||
*/
|
||||
#define TOX_VERSION_PATCH 10
|
||||
#define TOX_VERSION_PATCH 11
|
||||
|
||||
uint32_t tox_version_patch(void);
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user