Skip to content

Commit da43876

Browse files
committed
chore: Release 0.2.19
1 parent f904179 commit da43876

File tree

7 files changed

+273
-6
lines changed

7 files changed

+273
-6
lines changed

CHANGELOG.md

Lines changed: 266 additions & 0 deletions
Large diffs are not rendered by default.

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ set_source_files_properties(
4444
# versions in a synchronised way.
4545
set(PROJECT_VERSION_MAJOR "0")
4646
set(PROJECT_VERSION_MINOR "2")
47-
set(PROJECT_VERSION_PATCH "18")
47+
set(PROJECT_VERSION_PATCH "19")
4848
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}.${PROJECT_VERSION_PATCH}")
4949

5050
# 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.18])
5+
AC_INIT([tox], [0.2.19])
66
AC_CONFIG_AUX_DIR(configure_aux)
77
AC_CONFIG_SRCDIR([toxcore/net_crypto.c])
88
AM_INIT_AUTOMAKE([foreign 1.10 -Wall -Werror subdir-objects tar-ustar])
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
af58a125e5c80d7a19bc7f32868c1edfdf80f366e3bf778728961a50ce63ee26 /usr/local/bin/tox-bootstrapd
1+
e96f03a89051c5df12c28d0d6941184da2b92742d248bd4c57d31189a0052844 /usr/local/bin/tox-bootstrapd

other/docker/pkgsrc/pkgsrc.Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ COPY . /work/c-toxcore-0.2.18
55
RUN ["tar", "zcf", "c-toxcore.tar.gz", "c-toxcore-0.2.18"]
66

77
WORKDIR /work/pkgsrc/chat/toxcore
8+
RUN ["sed", "-i", "-e", "s/libtoxcore.so.2.18.0/libtoxcore.so.2.19.0/g", "PLIST"]
89
RUN ["bmake", "clean"]
910
RUN ["bmake", "DISTFILES=c-toxcore.tar.gz", "DISTDIR=/work", "NO_CHECKSUM=yes"]
1011
RUN ["bmake", "install"]

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=20
14+
CURRENT=21
1515
REVISION=0
16-
AGE=18
16+
AGE=19

toxcore/tox.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ uint32_t tox_version_minor(void);
148148
* Incremented when bugfixes are applied without changing any functionality or
149149
* API or ABI.
150150
*/
151-
#define TOX_VERSION_PATCH 18
151+
#define TOX_VERSION_PATCH 19
152152

153153
uint32_t tox_version_patch(void);
154154

0 commit comments

Comments
 (0)