summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Winship <danw@gnome.org>2015-03-03 11:02:10 -0500
committerDan Winship <danw@gnome.org>2015-03-03 11:04:44 -0500
commitf7292448160128b3cb4b7cd06c2447f81fd8c6c9 (patch)
treede01b85580658c2b1b0f7e983c8ea9b9308c07f3
parent931fd82e1eb63319e381507e975a344c523a35f7 (diff)
downloadlibsoup-f7292448160128b3cb4b7cd06c2447f81fd8c6c9.tar.gz
2.49.91.12.49.91.1
-rw-r--r--NEWS6
-rw-r--r--configure.ac3
2 files changed, 7 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 7310d829..2b96d16b 100644
--- a/NEWS
+++ b/NEWS
@@ -1,9 +1,13 @@
-Changes in libsoup from 2.49.1 to 2.49.91:
+Changes in libsoup from 2.49.1 to 2.49.91.1:
* WebSockets! Libsoup now has support for WebSockets in both
SoupSession and SoupServer. [#627738, Dan Winship and Lionel
Landwerlin, based on code from the Cockpit project]
+ * The WebSocket code in libsoup 2.49.91 did not build on
+ 32-bit architectures. 2.49.91.1 was released to fix
+ this.
+
* Added support for NTLMv2 Session Security to SoupAuthNTLM.
(This is transparent to the app/user; if the server supports
it, it will be used.) [#739192, Adam Seering]
diff --git a/configure.ac b/configure.ac
index 04d40201..86aa6fa6 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,9 +5,10 @@ dnl *******************************************
m4_define([soup_major_version], [2])
m4_define([soup_minor_version], [49])
m4_define([soup_micro_version], [91])
+m4_define([soup_nano_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])
+AC_INIT([libsoup],[soup_major_version.soup_minor_version.soup_micro_version.soup_nano_version],[http://bugzilla.gnome.org/enter_bug.cgi?product=libsoup])
AC_CONFIG_SRCDIR([libsoup-2.4.pc.in])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_AUX_DIR([build-aux])