summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Lindén <dev@robinlinden.eu>2017-04-14 13:21:21 +0200
committerRobin Lindén <dev@robinlinden.eu>2017-04-27 20:20:19 +0200
commitf6db9333e2d1262e7ba3846563c30f63c98ffa38 (patch)
tree721604078aa76f0f2b01fe19da854409554da694
parentc25e3d2d7c08201f74768fda9a650a7b80c8ec88 (diff)
Release v0.1.8
-rw-r--r--CHANGELOG.md24
-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, 29 insertions, 7 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ce889011..7de7fc74 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,13 +1,35 @@
1 1
2 2
3## v0.1.8
4
5### Closed issues:
6
7- [#535](https://github.com/TokTok/c-toxcore/issues/535) OS X tests failing
8- [#503](https://github.com/TokTok/c-toxcore/issues/503) Undefined functions: tox_pass_salt_length, tox_pass_key_length, tox_pass_encryption_extra_length
9- [#456](https://github.com/TokTok/c-toxcore/issues/456) Tox.h doesn't expose the size of the nospam.
10- [#411](https://github.com/TokTok/c-toxcore/issues/411) Reduce CTest timeout to 2 minutes
11
12### Merged PRs:
13
14- [#538](https://github.com/TokTok/c-toxcore/issues/538) Reverting tox_loop PR changes
15- [#526](https://github.com/TokTok/c-toxcore/issues/526) Add TOX_NOSPAM_SIZE to the public API.
16- [#525](https://github.com/TokTok/c-toxcore/issues/525) Retry autotools tests the same way as cmake tests.
17- [#524](https://github.com/TokTok/c-toxcore/issues/524) Reduce ctest timeout to 2 minutes from 5 minutes.
18- [#512](https://github.com/TokTok/c-toxcore/issues/512) Add test for DHT pack_nodes and unpack_nodes
19- [#504](https://github.com/TokTok/c-toxcore/issues/504) CMake: install bootstrapd if it is built
20- [#488](https://github.com/TokTok/c-toxcore/issues/488) Save compiled Android artifacts after CircleCI builds.
21- [#473](https://github.com/TokTok/c-toxcore/issues/473) Added missing includes: <netinet/in.h> and <sys/socket.h>
22- [#335](https://github.com/TokTok/c-toxcore/issues/335) Implement tox_loop
23
3## v0.1.7 24## v0.1.7
4 25
5### Closed issues: 26### Closed issues:
6 27
7- [#482](https://github.com/TokTok/c-toxcore/issues/482) CMake can't detect and compile ToxAV on OSX 28- [#474](https://github.com/TokTok/c-toxcore/issues/474) TOX_VERSION_PATCH isn't in sync with the version
8 29
9### Merged PRs: 30### Merged PRs:
10 31
32- [#523](https://github.com/TokTok/c-toxcore/issues/523) Release v0.1.7
11- [#521](https://github.com/TokTok/c-toxcore/issues/521) Fix appveyor script: install curl from chocolatey. 33- [#521](https://github.com/TokTok/c-toxcore/issues/521) Fix appveyor script: install curl from chocolatey.
12- [#510](https://github.com/TokTok/c-toxcore/issues/510) Fix list malloc(0) bug 34- [#510](https://github.com/TokTok/c-toxcore/issues/510) Fix list malloc(0) bug
13- [#509](https://github.com/TokTok/c-toxcore/issues/509) Fix network malloc(0) bug 35- [#509](https://github.com/TokTok/c-toxcore/issues/509) Fix network malloc(0) bug
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a3b12cef..0a7b017b 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -15,7 +15,7 @@ set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
15# versions in a synchronised way. 15# versions in a synchronised way.
16set(PROJECT_VERSION_MAJOR "0") 16set(PROJECT_VERSION_MAJOR "0")
17set(PROJECT_VERSION_MINOR "1") 17set(PROJECT_VERSION_MINOR "1")
18set(PROJECT_VERSION_PATCH "7") 18set(PROJECT_VERSION_PATCH "8")
19set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") 19set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
20 20
21# set .so library version / following libtool scheme 21# set .so library version / following libtool scheme
diff --git a/configure.ac b/configure.ac
index 9eaa840f..bddd996f 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.7]) 5AC_INIT([tox], [0.1.8])
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 59f1e447..4e447b69 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=8 14CURRENT=9
15REVISION=0 15REVISION=0
16AGE=7 16AGE=8
diff --git a/toxcore/tox.api.h b/toxcore/tox.api.h
index 281cb998..fc3ac821 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 = 7; 182const VERSION_PATCH = 8;
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 75757b6f..f7e24ebf 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 7 183#define TOX_VERSION_PATCH 8
184 184
185uint32_t tox_version_patch(void); 185uint32_t tox_version_patch(void);
186 186