summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Lindén <dev@robinlinden.eu>2017-12-17 19:08:13 +0100
committerRobin Lindén <dev@robinlinden.eu>2017-12-26 17:46:13 +0100
commitfc0cc08b2115d037551369f69519e95e841643aa (patch)
tree26b19d8cfcd8024bf3a94af445f064f95a17eacb
parentdf40fd8db0af5d74870de1c777bd955536bac3e7 (diff)
Release v0.1.11
-rw-r--r--CHANGELOG.md28
-rw-r--r--CMakeLists.txt2
-rw-r--r--configure.ac2
-rw-r--r--so.version4
-rw-r--r--toxcore/tox.api.h2
-rw-r--r--toxcore/tox.h2
6 files changed, 34 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e3275a16..40f43341 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,37 @@
1 1
2## v0.1.11
3
4### Merged PRs:
5
6- [#643](https://github.com/TokTok/c-toxcore/pull/643) Add .editorconfig
7- [#637](https://github.com/TokTok/c-toxcore/pull/637) Update tox-bootstrapd Dockerfile
8- [#635](https://github.com/TokTok/c-toxcore/pull/635) Separate FreeBSD Travis build in 2 stages
9- [#632](https://github.com/TokTok/c-toxcore/pull/632) Lift libconfig to v1.7.1
10- [#631](https://github.com/TokTok/c-toxcore/pull/631) Add aspcud for Opam
11- [#630](https://github.com/TokTok/c-toxcore/pull/630) Fix for Travis fail on addr_resolve testing
12- [#623](https://github.com/TokTok/c-toxcore/pull/623) Split video payload into multiple RTP messages when too big to fit into one
13- [#615](https://github.com/TokTok/c-toxcore/pull/615) forget DHT pubkey of offline friend after DHT timeout
14- [#611](https://github.com/TokTok/c-toxcore/pull/611) Fix typo
15- [#607](https://github.com/TokTok/c-toxcore/pull/607) set onion pingid timeout to announce timeout (300s)
16- [#592](https://github.com/TokTok/c-toxcore/pull/592) Adjust docs of few toxencrypt function to the code
17- [#587](https://github.com/TokTok/c-toxcore/pull/587) Fix tox test
18- [#586](https://github.com/TokTok/c-toxcore/pull/586) Improve LAN discovery
19- [#576](https://github.com/TokTok/c-toxcore/pull/576) Replace include(CTest) on enable_testing()
20- [#574](https://github.com/TokTok/c-toxcore/pull/574) Reset hole-punching parameters after not punching for a while
21- [#571](https://github.com/TokTok/c-toxcore/pull/571) Configure needs to find libsodium headers.
22- [#515](https://github.com/TokTok/c-toxcore/pull/515) Network cleanup: reduce dependency on system-defined constants
23- [#505](https://github.com/TokTok/c-toxcore/pull/505) Add FreeBSD Travis
24- [#500](https://github.com/TokTok/c-toxcore/pull/500) Fixed the bug when receipts for messages sent from the receipt callback never arrived.
25
26### Closed issues:
27
28- [#493](https://github.com/TokTok/c-toxcore/issues/493) Receipts for messages sent from the receipt callback never arrive
2 29
3## v0.1.10 30## v0.1.10
4 31
5### Merged PRs: 32### Merged PRs:
6 33
34- [#575](https://github.com/TokTok/c-toxcore/pull/575) Release v0.1.10
7- [#564](https://github.com/TokTok/c-toxcore/pull/564) Fix Windows build 35- [#564](https://github.com/TokTok/c-toxcore/pull/564) Fix Windows build
8- [#542](https://github.com/TokTok/c-toxcore/pull/542) Save bandwidth by moderating onion pinging 36- [#542](https://github.com/TokTok/c-toxcore/pull/542) Save bandwidth by moderating onion pinging
9 37
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 79f07e9d..41b89597 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -14,7 +14,7 @@ set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
14# versions in a synchronised way. 14# versions in a synchronised way.
15set(PROJECT_VERSION_MAJOR "0") 15set(PROJECT_VERSION_MAJOR "0")
16set(PROJECT_VERSION_MINOR "1") 16set(PROJECT_VERSION_MINOR "1")
17set(PROJECT_VERSION_PATCH "10") 17set(PROJECT_VERSION_PATCH "11")
18set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") 18set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
19 19
20# set .so library version / following libtool scheme 20# set .so library version / following libtool scheme
diff --git a/configure.ac b/configure.ac
index 1ff861cd..c4b7a25f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -2,7 +2,7 @@
2# Process this file with autoconf to produce a configure script. 2# Process this file with autoconf to produce a configure script.
3 3
4AC_PREREQ([2.65]) 4AC_PREREQ([2.65])
5AC_INIT([tox], [0.1.10]) 5AC_INIT([tox], [0.1.11])
6AC_CONFIG_AUX_DIR(configure_aux) 6AC_CONFIG_AUX_DIR(configure_aux)
7AC_CONFIG_SRCDIR([toxcore/net_crypto.c]) 7AC_CONFIG_SRCDIR([toxcore/net_crypto.c])
8AC_CONFIG_HEADERS([config.h]) 8AC_CONFIG_HEADERS([config.h])
diff --git a/so.version b/so.version
index 03e4ec8c..9594e0ff 100644
--- a/so.version
+++ b/so.version
@@ -11,6 +11,6 @@
11# For a full reference see: 11# For a full reference see:
12# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info 12# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
13 13
14CURRENT=11 14CURRENT=12
15REVISION=0 15REVISION=0
16AGE=10 16AGE=11
diff --git a/toxcore/tox.api.h b/toxcore/tox.api.h
index 0763c778..ce0b3a36 100644
--- a/toxcore/tox.api.h
+++ b/toxcore/tox.api.h
@@ -179,7 +179,7 @@ const VERSION_MINOR = 1;
179 * The patch or revision number. Incremented when bugfixes are applied without 179 * The patch or revision number. Incremented when bugfixes are applied without
180 * changing any functionality or API or ABI. 180 * changing any functionality or API or ABI.
181 */ 181 */
182const VERSION_PATCH = 10; 182const VERSION_PATCH = 11;
183 183
184/** 184/**
185 * A macro to check at preprocessing time whether the client code is compatible 185 * A macro to check at preprocessing time whether the client code is compatible
diff --git a/toxcore/tox.h b/toxcore/tox.h
index 30bc9509..cb9c4fa0 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -180,7 +180,7 @@ uint32_t tox_version_minor(void);
180 * The patch or revision number. Incremented when bugfixes are applied without 180 * The patch or revision number. Incremented when bugfixes are applied without
181 * changing any functionality or API or ABI. 181 * changing any functionality or API or ABI.
182 */ 182 */
183#define TOX_VERSION_PATCH 10 183#define TOX_VERSION_PATCH 11
184 184
185uint32_t tox_version_patch(void); 185uint32_t tox_version_patch(void);
186 186