From d6d71e97f846bc2c696f9ca2cb39d78fa66bbe97 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Thu, 1 Feb 2024 09:34:32 +0100 Subject: [PATCH] Release libstrophe-0.13.0 Signed-off-by: Steffen Jaeckel --- ChangeLog | 12 +++++++++++- Doxyfile | 2 +- configure.ac | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index a4699475..39e6a84b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +0.13.0 + - Fix connected/connecting signaling to user (#227) + - Fix wording of licensing terms (#225) + - Prepare for future changes in OpenSSL (#226) + - Improve Stream Management (#227) (#230) + - Add SCRAM-PLUS Variants (#228) + - Introduce XEP-0138 stream compression (#231) + - Deprecated the following API (#227): + - xmpp_conn_disable_tls() - replaced by a flag set by xmpp_conn_set_flags() + 0.12.3 - Improve TCP-connection establishment (#221) - Handle case where the server doesn't provide the `bind` feature (#224) @@ -21,7 +31,7 @@ - Fix some build steps when builddir != srcdir (#208) - Allow the user to disable build of examples (#209) - CI builds against OpenSSL 3 (#206) - - Change the call signature of the following API: + - Change the call signature of the following API (#208): - xmpp_conn_set_client_cert() - the PKCS#12 file has now to be passed via the `cert` parameter. Originally it was via `key`. Currently both styles are supported, but in a future release only passing via `cert` will be accepted. diff --git a/Doxyfile b/Doxyfile index 82d7d872..67a393b9 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = Strophe # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 0.12 +PROJECT_NUMBER = 0.13 # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/configure.ac b/configure.ac index 707053f8..ea75fbf7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ m4_define([v_maj], [0]) -m4_define([v_min], [12]) -m4_define([v_patch], [3]) +m4_define([v_min], [13]) +m4_define([v_patch], [0]) m4_define([project_version], [v_maj.v_min.v_patch]) m4_define([lt_cur], m4_eval(v_maj + v_min))