summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2013-07-09 09:57:02 -0400
committerDan Winship <danw@gnome.org>2013-07-09 09:57:02 -0400
commite6ed20e9832dbc7290b3cfde39b1e029689e1ace (patch)
tree247d7c7d2cf3f65fa5f9dfa41deaabec16389eac
parent2081c31235e7c2b3a15fa0a819631106cf4c3efa (diff)
downloadlibsoup-e6ed20e9832dbc7290b3cfde39b1e029689e1ace.tar.gz
-rw-r--r--NEWS23
-rw-r--r--configure.ac2
2 files changed, 24 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 06ba7b74..ecd19a61 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,26 @@
+Changes in libsoup from 2.43.2 to 2.43.4:
+
+ * Fixed a bug that could cause synchronous sessions to get
+ stuck in a state where no new messages would ever get
+ processed. [#703463, Philip Withnall]
+
+ * Fixed another memory leak in SoupSocket (found while
+ added a test case for #700472)
+
+ * Switched to using g_cclosure_marshal_generic() rather than
+ using glib-genmarshal. [#686042, Olivier Blin]
+
+ * Changed SoupServer to call unref() on the query hash table
+ after calling the handler, rather than destroy(), so that
+ the handler can keep a copy of the query data if it wants.
+ [#702793, Bernhard Schuster]
+
+ * Fixed a few introspection annotations
+
+ * Updated examples/get to use SoupLogger and to allow
+ redirecting the output to a file [#703231, #703229, Andres
+ Gomez]
+
Changes in libsoup from 2.43.1 to 2.43.2:
* Fixed an authentication error when using NTLM when
diff --git a/configure.ac b/configure.ac
index ccdf5b08..92d52f83 100644
--- a/configure.ac
+++ b/configure.ac
@@ -4,7 +4,7 @@ dnl *******************************************
m4_define([soup_major_version], [2])
m4_define([soup_minor_version], [43])
-m4_define([soup_micro_version], [2])
+m4_define([soup_micro_version], [4])
AC_PREREQ(2.63)
AC_INIT([libsoup],[soup_major_version.soup_minor_version.soup_micro_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=libsoup])