summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Lindén <dev@robinlinden.eu>2018-08-08 19:38:31 +0200
committerRobin Lindén <dev@robinlinden.eu>2018-08-08 19:38:31 +0200
commitffd71e895b8b553f233ffafe611f337ab5c18d47 (patch)
tree4ea45b4636457aec29fa42ca192a12a8896a922f
parentcd98ec4c165a34093b2a6331dfc1e93861938a4c (diff)
Release 0.2.5
-rw-r--r--CHANGELOG.md29
-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, 35 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e80f3598..8b494f07 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,38 @@
1 1
2 2
3## v0.2.5
4
5### Merged PRs:
6
7- [#1048](https://github.com/TokTok/c-toxcore/pull/1048) Fix error message in m_send_generic_message
8- [#1047](https://github.com/TokTok/c-toxcore/pull/1047) Remove unused `m_callback_log` function.
9- [#1041](https://github.com/TokTok/c-toxcore/pull/1041) Avoid multiple for-next expressions.
10- [#1037](https://github.com/TokTok/c-toxcore/pull/1037) Run all tests in the Autotools build
11- [#1035](https://github.com/TokTok/c-toxcore/pull/1035) Fix problems with initial connections and name-setting in conferences
12- [#1032](https://github.com/TokTok/c-toxcore/pull/1032) Use auto_test fixture in some tests and standardise filenames
13- [#1030](https://github.com/TokTok/c-toxcore/pull/1030) Make a separate `struct Tox` containing the Messenger.
14- [#1029](https://github.com/TokTok/c-toxcore/pull/1029) Add `by_id` and `get_id` functions, renaming from `*_uid`.
15- [#1025](https://github.com/TokTok/c-toxcore/pull/1025) More fixed_width ints and incorporating file_saving_test.c
16- [#1023](https://github.com/TokTok/c-toxcore/pull/1023) Run buildifier on c-toxcore BUILD files.
17- [#1022](https://github.com/TokTok/c-toxcore/pull/1022) Make `resize` in `list.c` return bool instead of 0/1.
18- [#1021](https://github.com/TokTok/c-toxcore/pull/1021) Remove redundant casts to the same type.
19- [#1020](https://github.com/TokTok/c-toxcore/pull/1020) Add github usernames to TODOs.
20- [#1019](https://github.com/TokTok/c-toxcore/pull/1019) Synchronise parameter names in headers with those in the implementation.
21- [#1018](https://github.com/TokTok/c-toxcore/pull/1018) Reduce nesting by doing more early returns on error.
22- [#1017](https://github.com/TokTok/c-toxcore/pull/1017) Add missing braces in dht_test.c.
23- [#1011](https://github.com/TokTok/c-toxcore/pull/1011) Run Clang global static analysis on Travis.
24- [#1010](https://github.com/TokTok/c-toxcore/pull/1010) Avoid implementations in .h files or #including .c files.
25
26### Closed issues:
27
28- [#1028](https://github.com/TokTok/c-toxcore/issues/1028) qTox crashes 1-2 times a day after update to 0.2.4
29- [#1002](https://github.com/TokTok/c-toxcore/issues/1002) Implement an abstraction over pthread and windows thread synchronisation primitives
30
3## v0.2.4 31## v0.2.4
4 32
5### Merged PRs: 33### Merged PRs:
6 34
35- [#1024](https://github.com/TokTok/c-toxcore/pull/1024) Release v0.2.4
7- [#1014](https://github.com/TokTok/c-toxcore/pull/1014) Use string comparison operator in configure.ac. 36- [#1014](https://github.com/TokTok/c-toxcore/pull/1014) Use string comparison operator in configure.ac.
8- [#1013](https://github.com/TokTok/c-toxcore/pull/1013) Link -lsocket and -lnsl for socket functions on Solaris. 37- [#1013](https://github.com/TokTok/c-toxcore/pull/1013) Link -lsocket and -lnsl for socket functions on Solaris.
9- [#1012](https://github.com/TokTok/c-toxcore/pull/1012) Correct the max hostname length constant. 38- [#1012](https://github.com/TokTok/c-toxcore/pull/1012) Correct the max hostname length constant.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index c760e351..b914b939 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -30,7 +30,7 @@ set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
30# versions in a synchronised way. 30# versions in a synchronised way.
31set(PROJECT_VERSION_MAJOR "0") 31set(PROJECT_VERSION_MAJOR "0")
32set(PROJECT_VERSION_MINOR "2") 32set(PROJECT_VERSION_MINOR "2")
33set(PROJECT_VERSION_PATCH "4") 33set(PROJECT_VERSION_PATCH "5")
34set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") 34set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
35 35
36# set .so library version / following libtool scheme 36# set .so library version / following libtool scheme
diff --git a/configure.ac b/configure.ac
index 5de53523..68ead33d 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.2.4]) 5AC_INIT([tox], [0.2.5])
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 a64c68ba..aef65524 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=6 14CURRENT=7
15REVISION=0 15REVISION=0
16AGE=4 16AGE=5
diff --git a/toxcore/tox.api.h b/toxcore/tox.api.h
index 7cc58e3b..24360641 100644
--- a/toxcore/tox.api.h
+++ b/toxcore/tox.api.h
@@ -182,7 +182,7 @@ const VERSION_MINOR = 2;
182 * The patch or revision number. Incremented when bugfixes are applied without 182 * The patch or revision number. Incremented when bugfixes are applied without
183 * changing any functionality or API or ABI. 183 * changing any functionality or API or ABI.
184 */ 184 */
185const VERSION_PATCH = 4; 185const VERSION_PATCH = 5;
186 186
187/** 187/**
188 * A macro to check at preprocessing time whether the client code is compatible 188 * A macro to check at preprocessing time whether the client code is compatible
diff --git a/toxcore/tox.h b/toxcore/tox.h
index 35ff19e7..2c40389b 100644
--- a/toxcore/tox.h
+++ b/toxcore/tox.h
@@ -183,7 +183,7 @@ uint32_t tox_version_minor(void);
183 * The patch or revision number. Incremented when bugfixes are applied without 183 * The patch or revision number. Incremented when bugfixes are applied without
184 * changing any functionality or API or ABI. 184 * changing any functionality or API or ABI.
185 */ 185 */
186#define TOX_VERSION_PATCH 4 186#define TOX_VERSION_PATCH 5
187 187
188uint32_t tox_version_patch(void); 188uint32_t tox_version_patch(void);
189 189