summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2013-04-30 16:51:51 -0400
committerDan Winship <danw@gnome.org>2013-04-30 16:51:51 -0400
commit816cdc96f30087cb9427312b86e6bdc807349628 (patch)
tree0ed9dcae10b1e182fe2d65cc5cab317ea52bbb96
parent39e527cdc1af04afdf13207f5503afa7b772043e (diff)
downloadlibsoup-816cdc96f30087cb9427312b86e6bdc807349628.tar.gz
-rw-r--r--NEWS19
-rw-r--r--configure.ac2
2 files changed, 20 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index ea5a2194..808ba000 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,22 @@
+Changes in libsoup from 2.42.1 to 2.43.1:
+
+ * Including <libsoup/soup.h> no longer pulls in the system
+ networking headers. This may cause some packages to no
+ longer compile, if they were accidentally depending on this.
+ Adding "#include <gio/gnetworking.h>" will fix them on both
+ unix and Windows. (This was done as part of fixing the build
+ on Windows.) [#692134, Dan]
+
+ * Fixed SoupSession:proxy-resolver [#698163, Dan]
+
+ * Added soup_message_set_priority(), to mark messages as being
+ high, low, or normal priority, and update the message queue
+ to prioritize them accordingly. [#696277, Sergio]
+
+ * Fixed several test programs to still work if glib-networking
+ isn't installed [Dan], and fixed another to still work if
+ the kernel has no IPv6 support. [#698220, Dan]
+
Changes in libsoup from 2.42.0 to 2.42.1:
* Fixed SoupProxyResolverDefault, which got broken in 2.42.92.
diff --git a/configure.ac b/configure.ac
index 8d717cc4..8bbf9613 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], [0])
+m4_define([soup_micro_version], [1])
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])