From f13ea6e5569dda72588b4863aebf2280ac184e0c Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Wed, 2 Aug 2023 14:45:39 +0200 Subject: [PATCH] Release libstrophe-0.12.3 Signed-off-by: Steffen Jaeckel --- ChangeLog | 9 +++++++++ configure.ac | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 4eb1d0c..a469947 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +0.12.3 + - Improve TCP-connection establishment (#221) + - Handle case where the server doesn't provide the `bind` feature (#224) + - Fix configure script for non-bash shells (#218) + - Parse JID's according to RFC7622 (#219) + - Fix potential memory leak in internal DNS resolver (#219) + - Fix potential memory leaks in `xmpp_conn_set_cafile()` and `xmpp_conn_set_capath()` (#219) + - Internal improvements (#219) + 0.12.2 - Fix reconnect issues when Stream Management is enabled (#211) - Fix resolver ... this time for real hopefully (fixup of #200) (#214) diff --git a/configure.ac b/configure.ac index 298af48..87175cf 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], [2]) +m4_define([v_patch], [3]) m4_define([project_version], [v_maj.v_min.v_patch]) m4_define([lt_cur], m4_eval(v_maj + v_min))