Skip to content

Commit 2824daf

Browse files
committed
Release v0.2.2
1 parent e16cf49 commit 2824daf

File tree

6 files changed

+25
-6
lines changed

6 files changed

+25
-6
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,28 @@
11

22

3+
## v0.2.2
4+
5+
### Merged PRs:
6+
7+
- [#872](https://github.com/TokTok/c-toxcore/issues/872) Restrict packet kinds that can be sent through onion path.
8+
- [#864](https://github.com/TokTok/c-toxcore/issues/864) CMake warn if libconfig not found
9+
- [#863](https://github.com/TokTok/c-toxcore/issues/863) Remove broken and unmaintained scripts.
10+
- [#859](https://github.com/TokTok/c-toxcore/issues/859) Add clarifying comment to cryptpacket_received function.
11+
- [#857](https://github.com/TokTok/c-toxcore/issues/857) Avoid the use of rand() in tests.
12+
- [#846](https://github.com/TokTok/c-toxcore/issues/846) Disallow stderr logger by default.
13+
- [#845](https://github.com/TokTok/c-toxcore/issues/845) Fix coveralls reporting.
14+
- [#844](https://github.com/TokTok/c-toxcore/issues/844) Add COVERAGE cmake flag for clang.
15+
- [#825](https://github.com/TokTok/c-toxcore/issues/825) Add default stderr logger for logging to nullptr.
16+
- [#824](https://github.com/TokTok/c-toxcore/issues/824) Simplify sendpacket function, deduplicate some logic.
17+
- [#809](https://github.com/TokTok/c-toxcore/issues/809) Remove the use of the 'hh' format specifier.
18+
- [#801](https://github.com/TokTok/c-toxcore/issues/801) Add logging to the onion_test.
19+
- [#797](https://github.com/TokTok/c-toxcore/issues/797) Move struct DHT_Friend into DHT.c.
20+
321
## v0.2.1
422

523
### Merged PRs:
624

25+
- [#839](https://github.com/TokTok/c-toxcore/pull/839) Update changelog for 0.2.1
726
- [#837](https://github.com/TokTok/c-toxcore/pull/837) Update version to 0.2.1.
827
- [#833](https://github.com/TokTok/c-toxcore/pull/833) Add missing tox_nospam_size() function
928
- [#832](https://github.com/TokTok/c-toxcore/pull/832) Don't set RTP_LARGE_FRAME on rtp audio packets

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ set(CMAKE_MODULE_PATH ${toxcore_SOURCE_DIR}/cmake)
3030
# versions in a synchronised way.
3131
set(PROJECT_VERSION_MAJOR "0")
3232
set(PROJECT_VERSION_MINOR "2")
33-
set(PROJECT_VERSION_PATCH "1")
33+
set(PROJECT_VERSION_PATCH "2")
3434
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
3535

3636
# set .so library version / following libtool scheme

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.65])
5-
AC_INIT([tox], [0.2.1])
5+
AC_INIT([tox], [0.2.2])
66
AC_CONFIG_AUX_DIR(configure_aux)
77
AC_CONFIG_SRCDIR([toxcore/net_crypto.c])
88
AC_CONFIG_HEADERS([config.h])

so.version

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,6 @@
1111
# For a full reference see:
1212
# https://www.gnu.org/software/libtool/manual/libtool.html#Updating-version-info
1313

14-
CURRENT=3
14+
CURRENT=4
1515
REVISION=0
16-
AGE=1
16+
AGE=2

toxcore/tox.api.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ const VERSION_MINOR = 2;
179179
* The patch or revision number. Incremented when bugfixes are applied without
180180
* changing any functionality or API or ABI.
181181
*/
182-
const VERSION_PATCH = 1;
182+
const VERSION_PATCH = 2;
183183

184184
/**
185185
* A macro to check at preprocessing time whether the client code is compatible

toxcore/tox.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ uint32_t tox_version_minor(void);
180180
* The patch or revision number. Incremented when bugfixes are applied without
181181
* changing any functionality or API or ABI.
182182
*/
183-
#define TOX_VERSION_PATCH 1
183+
#define TOX_VERSION_PATCH 2
184184

185185
uint32_t tox_version_patch(void);
186186

0 commit comments

Comments
 (0)