Skip to content

Commit d6d71e9

Browse files
committed
Release libstrophe-0.13.0
Signed-off-by: Steffen Jaeckel <[email protected]>
1 parent 3f03de0 commit d6d71e9

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

ChangeLog

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
0.13.0
2+
- Fix connected/connecting signaling to user (#227)
3+
- Fix wording of licensing terms (#225)
4+
- Prepare for future changes in OpenSSL (#226)
5+
- Improve Stream Management (#227) (#230)
6+
- Add SCRAM-PLUS Variants (#228)
7+
- Introduce XEP-0138 stream compression (#231)
8+
- Deprecated the following API (#227):
9+
- xmpp_conn_disable_tls() - replaced by a flag set by xmpp_conn_set_flags()
10+
111
0.12.3
212
- Improve TCP-connection establishment (#221)
313
- Handle case where the server doesn't provide the `bind` feature (#224)
@@ -21,7 +31,7 @@
2131
- Fix some build steps when builddir != srcdir (#208)
2232
- Allow the user to disable build of examples (#209)
2333
- CI builds against OpenSSL 3 (#206)
24-
- Change the call signature of the following API:
34+
- Change the call signature of the following API (#208):
2535
- xmpp_conn_set_client_cert() - the PKCS#12 file has now to be passed via the `cert`
2636
parameter. Originally it was via `key`. Currently both styles are supported,
2737
but in a future release only passing via `cert` will be accepted.

Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = Strophe
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 0.12
41+
PROJECT_NUMBER = 0.13
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
m4_define([v_maj], [0])
2-
m4_define([v_min], [12])
3-
m4_define([v_patch], [3])
2+
m4_define([v_min], [13])
3+
m4_define([v_patch], [0])
44
m4_define([project_version], [v_maj.v_min.v_patch])
55

66
m4_define([lt_cur], m4_eval(v_maj + v_min))

0 commit comments

Comments
 (0)