diff --git a/ChangeLog b/ChangeLog index 8d120bf..a7a0f1b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +0.14.0 + - Add SM-state serialization mechanism (#239) + - Add support for `SCRAM-SHA-512-PLUS` (da122981) + - Add support for `SSLKEYLOGFILE` with OpenSSL (d82df127) + - Fix some issues related to Stream Management (03d43132, 4359536a) + - Fix a potential segfault (9fef4b7d) + - New API: + - xmpp_conn_set_sm_callback() + - xmpp_conn_restore_sm_state() + 0.13.1 - Fix SCRAM-*-PLUS SASL mechanisms with OpenSSL and TLS < v1.3 (40f2452) - Only signal "stream negotiation success" once (1cf09b1) diff --git a/Doxyfile b/Doxyfile index 67a393b..3d1e1fb 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.13 +PROJECT_NUMBER = 0.14 # 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 340f596..e2e6dd7 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ m4_define([v_maj], [0]) -m4_define([v_min], [13]) -m4_define([v_patch], [1]) +m4_define([v_min], [14]) +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))