From bc3a830c22e352a4b6f74d9461283cad3c491ff0 Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 28 Jan 2008 21:49:39 +0000 Subject: [PATCH] Bump version to 2.3.0.1 * configure.in: Bump version to 2.3.0.1 * NEWS: Update * docs/reference/Makefile.am (content_files): include porting-2.2-2.4.xml svn path=/trunk/; revision=1060 --- ChangeLog | 9 +++++++ NEWS | 62 ++++++++++++++++++++++++++++++++++++++++++++++ configure.in | 2 +- docs/reference/Makefile.am | 2 +- 4 files changed, 73 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 88dc099..6e361e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,14 @@ 2008-01-28 Dan Winship + * configure.in: Bump version to 2.3.0.1 + + * NEWS: Update + + * docs/reference/Makefile.am (content_files): include + porting-2.2-2.4.xml + +2008-01-28 Dan Winship + * libsoup/soup-message.c (soup_message_set_auth) (soup_message_set_proxy_auth): Use soup_message_headers_replace(), not soup_message_headers_append(), since only a single diff --git a/NEWS b/NEWS index b348f31..70a6ef1 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,65 @@ +Changes in libsoup from the 2.2 series to 2.3.0.1: + + libsoup 2.3.0 is the first beta release of the libsoup 2.4 + series. It is an API break from the earlier 2.2 series that + fixes various bugs and API warts and lays the groundwork for + language bindings and various new features in upcoming + releases. + + (2.3.0.1 is identical to the 2.3.0 release in terms of code, + but includes this updated NEWS file which was accidentally + left out of the 2.3.0 tarball.) + + http://library.gnome.org/devel/libsoup/unstable/libsoup-porting-2.2-2.4.html + goes over the API changes in detail. If you have questions not + answered by the porting document, please send mail to + libsoup-list@gnome.org. + + Specific user-reported bugs fixed in this release: + + * SoupURI now correctly handles URIs with complex encoded + queries [#266516, Jean-Yves Lefort] + + * It is now possible for a SoupServer to use Digest auth + without needing to have the cleartext password available. + [#347108, Anas Nashif] + + * Digest authentication now properly handles "stale=true" and + "nextnonce=..." [#471380, Jari Urpalainen] + + * SoupServer is now subclassible [#491653, Mathias Hasselmann] + + * soup_server_run_async and soup_server_quit no longer ref and + unref the server, as that doesn't match ordinary GObject + conventions [#494128, Mathias Hasselmann] + + * The test programs no longer use a symbol name that conflicts + with Cygwin [#501631, Cygwin Ports Maintainer] + + * libsoup can now handle the not-quite-HTTP responses returned + by Shoutcast servers [#502325, Wouter Cloetens] + + * If you use libsoup while disconnected from the network, it + no longer caches the failed DNS results [#508593, Bradley + Worley] + + Items from http://live.gnome.org/LibSoup/ToDo fixed: + + * "Expect: 100-continue" processing now works correctly on + both client and server. + + * SoupSessions are no longer leaked + + * The XML-RPC API is improved. The SOAP API is gone... + + * Added utility functions for HTML form handling + + * Improved message header handling + + * SoupServer now automatically adds a "Date" header + +========== + Changes in libsoup from 2.2.103 to 2.2.104: * soup_message_io_pause() and soup_message_io_pause() are now diff --git a/configure.in b/configure.in index 74fc381..d1f8b45 100644 --- a/configure.in +++ b/configure.in @@ -3,7 +3,7 @@ dnl *** Initialize automake and set version *** dnl ******************************************* AC_PREREQ(2.53) -AC_INIT(libsoup, 2.3.0) +AC_INIT(libsoup, 2.3.0.1) AC_CONFIG_SRCDIR(libsoup.pc.in) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am index f34e154..c57803d 100644 --- a/docs/reference/Makefile.am +++ b/docs/reference/Makefile.am @@ -41,7 +41,7 @@ IGNORE_HFILES= soup.h soup-marshal.h \ HTML_IMAGES = # Extra XML files that are included by $(DOC_MAIN_SGML_FILE). -content_files = client-howto.xml server-howto.xml +content_files = client-howto.xml server-howto.xml porting-2.2-2.4.xml # Other files to distribute. extra_files = -- 2.7.4