From a8807feb5c22e6048c5d62d80f991f6ecb62a060 Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Tue, 5 Jul 2022 00:08:47 +0200 Subject: [PATCH] Release libstrophe-0.12.1 Signed-off-by: Steffen Jaeckel --- ChangeLog | 11 +++++++++++ configure.ac | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1c7e3fa2..0d46ba6d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +0.12.1 + - Fix compilation in buildroot (#207) + - Fixes regarding OpenSSL (#208) + - 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: + - 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. + 0.12.0 - Fix potential infinite loop in resolver (#200) - Prevent potential memory leak in `xmpp_stanza_new_from_string()` (#205) diff --git a/configure.ac b/configure.ac index ee282ff7..db138574 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], [0]) +m4_define([v_patch], [1]) m4_define([project_version], [v_maj.v_min.v_patch]) m4_define([lt_cur], m4_eval(v_maj + v_min))