From f6db9333e2d1262e7ba3846563c30f63c98ffa38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robin=20Lind=C3=A9n?= Date: Fri, 14 Apr 2017 13:21:21 +0200 Subject: [PATCH] Release v0.1.8 --- CHANGELOG.md | 24 +++++++++++++++++++++++- CMakeLists.txt | 2 +- configure.ac | 2 +- so.version | 4 ++-- toxcore/tox.api.h | 2 +- toxcore/tox.h | 2 +- 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 @@ +## v0.1.8 + +### Closed issues: + +- [#535](https://github.com/TokTok/c-toxcore/issues/535) OS X tests failing +- [#503](https://github.com/TokTok/c-toxcore/issues/503) Undefined functions: tox_pass_salt_length, tox_pass_key_length, tox_pass_encryption_extra_length +- [#456](https://github.com/TokTok/c-toxcore/issues/456) Tox.h doesn't expose the size of the nospam. +- [#411](https://github.com/TokTok/c-toxcore/issues/411) Reduce CTest timeout to 2 minutes + +### Merged PRs: + +- [#538](https://github.com/TokTok/c-toxcore/issues/538) Reverting tox_loop PR changes +- [#526](https://github.com/TokTok/c-toxcore/issues/526) Add TOX_NOSPAM_SIZE to the public API. +- [#525](https://github.com/TokTok/c-toxcore/issues/525) Retry autotools tests the same way as cmake tests. +- [#524](https://github.com/TokTok/c-toxcore/issues/524) Reduce ctest timeout to 2 minutes from 5 minutes. +- [#512](https://github.com/TokTok/c-toxcore/issues/512) Add test for DHT pack_nodes and unpack_nodes +- [#504](https://github.com/TokTok/c-toxcore/issues/504) CMake: install bootstrapd if it is built +- [#488](https://github.com/TokTok/c-toxcore/issues/488) Save compiled Android artifacts after CircleCI builds. +- [#473](https://github.com/TokTok/c-toxcore/issues/473) Added missing includes: and +- [#335](https://github.com/TokTok/c-toxcore/issues/335) Implement tox_loop + ## v0.1.7 ### Closed issues: -- [#482](https://github.com/TokTok/c-toxcore/issues/482) CMake can't detect and compile ToxAV on OSX +- [#474](https://github.com/TokTok/c-toxcore/issues/474) TOX_VERSION_PATCH isn't in sync with the version ### Merged PRs: +- [#523](https://github.com/TokTok/c-toxcore/issues/523) Release v0.1.7 - [#521](https://github.com/TokTok/c-toxcore/issues/521) Fix appveyor script: install curl from chocolatey. - [#510](https://github.com/TokTok/c-toxcore/issues/510) Fix list malloc(0) bug - [#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) # versions in a synchronised way. set(PROJECT_VERSION_MAJOR "0") set(PROJECT_VERSION_MINOR "1") -set(PROJECT_VERSION_PATCH "7") +set(PROJECT_VERSION_PATCH "8") set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}") # 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 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ([2.65]) -AC_INIT([tox], [0.1.7]) +AC_INIT([tox], [0.1.8]) AC_CONFIG_AUX_DIR(configure_aux) AC_CONFIG_SRCDIR([toxcore/net_crypto.c]) AC_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 @@ # For a full reference see: # https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info -CURRENT=8 +CURRENT=9 REVISION=0 -AGE=7 +AGE=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; * The patch or revision number. Incremented when bugfixes are applied without * changing any functionality or API or ABI. */ -const VERSION_PATCH = 7; +const VERSION_PATCH = 8; /** * 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); * The patch or revision number. Incremented when bugfixes are applied without * changing any functionality or API or ABI. */ -#define TOX_VERSION_PATCH 7 +#define TOX_VERSION_PATCH 8 uint32_t tox_version_patch(void);