summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Lindén <dev@robinlinden.eu>2018-08-16 22:45:33 +0200
committerRobin Lindén <dev@robinlinden.eu>2018-08-16 22:45:33 +0200
commit31ea1aa06e59d24d5196b17be9a7105d85c25080 (patch)
tree7c2b999eacce624f2565dfbcbe1308abae246c2e
parentc0db25542544d23e507f02645e0904d9dba2511b (diff)
Release 0.2.6
-rw-r--r--CHANGELOG.md39
-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, 45 insertions, 6 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8b494f07..1b48a556 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,9 +1,48 @@
1 1
2 2
3## v0.2.6
4
5### Merged PRs:
6
7- [#1090](https://github.com/TokTok/c-toxcore/pull/1090) Fix possible resource leaks in test
8- [#1089](https://github.com/TokTok/c-toxcore/pull/1089) Limit the size of a save file in file_saving_test.
9- [#1088](https://github.com/TokTok/c-toxcore/pull/1088) Use `--config` to tell bazel about the environment.
10- [#1085](https://github.com/TokTok/c-toxcore/pull/1085) Prune long long warnings.
11- [#1084](https://github.com/TokTok/c-toxcore/pull/1084) Fix style in toxav.c.
12- [#1083](https://github.com/TokTok/c-toxcore/pull/1083) Fix coding style in rtp module.
13- [#1082](https://github.com/TokTok/c-toxcore/pull/1082) Fix groupav.c style and avoid casts in toxav_old.c.
14- [#1080](https://github.com/TokTok/c-toxcore/pull/1080) Fix memory leak in error path in group A/V.
15- [#1079](https://github.com/TokTok/c-toxcore/pull/1079) Fix style in video.c.
16- [#1078](https://github.com/TokTok/c-toxcore/pull/1078) Fix style in msi.c.
17- [#1077](https://github.com/TokTok/c-toxcore/pull/1077) Make `conferences_object` properly typed.
18- [#1076](https://github.com/TokTok/c-toxcore/pull/1076) Fix style in bwcontroller module.
19- [#1074](https://github.com/TokTok/c-toxcore/pull/1074) Move OSX to stage 1 of Travis.
20- [#1073](https://github.com/TokTok/c-toxcore/pull/1073) Stop running tests in the bazel build.
21- [#1072](https://github.com/TokTok/c-toxcore/pull/1072) Avoid forward declaration of rtp structs.
22- [#1071](https://github.com/TokTok/c-toxcore/pull/1071) Temporarily disable FreeBSD build, since it times out.
23- [#1070](https://github.com/TokTok/c-toxcore/pull/1070) Fix enumerator names in toxav to comply with toxcore naming standards.
24- [#1068](https://github.com/TokTok/c-toxcore/pull/1068) Fix a few warnings from clang.
25- [#1067](https://github.com/TokTok/c-toxcore/pull/1067) Remove last use of the `MIN` macro.
26- [#1066](https://github.com/TokTok/c-toxcore/pull/1066) Remove all uses of the PAIR macro in toxav.
27- [#1064](https://github.com/TokTok/c-toxcore/pull/1064) Fix ToxAv's use of `struct Tox`.
28- [#1063](https://github.com/TokTok/c-toxcore/pull/1063) Avoid passing -1 as friend connection to new groups.
29- [#1062](https://github.com/TokTok/c-toxcore/pull/1062) Check that the save file size isn't larger than our address space.
30- [#1060](https://github.com/TokTok/c-toxcore/pull/1060) Avoid implicit conversion of negative value to uint32_t.
31- [#1059](https://github.com/TokTok/c-toxcore/pull/1059) Assert that we don't divide by 0 in random_testing.cc.
32- [#1056](https://github.com/TokTok/c-toxcore/pull/1056) Fix typo in loop over assocs.
33- [#1053](https://github.com/TokTok/c-toxcore/pull/1053) Use tokstyle in the cmake travis build.
34- [#1049](https://github.com/TokTok/c-toxcore/pull/1049) Fix some printf format specifiers.
35- [#1043](https://github.com/TokTok/c-toxcore/pull/1043) Add simple deterministic random number generator for tests
36- [#1042](https://github.com/TokTok/c-toxcore/pull/1042) Add callback for successful connection to a conference
37- [#1039](https://github.com/TokTok/c-toxcore/pull/1039) Use the crypto random functions instead of `rand()`.
38- [#1036](https://github.com/TokTok/c-toxcore/pull/1036) Add deprecation notice to some UPPER_CASE enums.
39- [#1016](https://github.com/TokTok/c-toxcore/pull/1016) Split out conference type (text/av) from identifier.
40
3## v0.2.5 41## v0.2.5
4 42
5### Merged PRs: 43### Merged PRs:
6 44
45- [#1054](https://github.com/TokTok/c-toxcore/pull/1054) Release 0.2.5
7- [#1048](https://github.com/TokTok/c-toxcore/pull/1048) Fix error message in m_send_generic_message 46- [#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. 47- [#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. 48- [#1041](https://github.com/TokTok/c-toxcore/pull/1041) Avoid multiple for-next expressions.
diff --git a/CMakeLists.txt b/CMakeLists.txt
index b7bbf282..e5654429 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 "5") 33set(PROJECT_VERSION_PATCH "6")
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 68ead33d..259a1776 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.5]) 5AC_INIT([tox], [0.2.6])
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 aef65524..88d41126 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=7 14CURRENT=8
15REVISION=0 15REVISION=0
16AGE=5 16AGE=6
diff --git a/toxcore/tox.api.h b/toxcore/tox.api.h
index d1e01c74..3629bed1 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 = 5; 185const VERSION_PATCH = 6;
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 2739e1c4..9f3072a7 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 5 186#define TOX_VERSION_PATCH 6
187 187
188uint32_t tox_version_patch(void); 188uint32_t tox_version_patch(void);
189 189