summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorClaudio Saavedra <csaavedra@igalia.com>2018-04-16 16:01:01 +0300
committerClaudio Saavedra <csaavedra@igalia.com>2018-04-16 16:06:43 +0300
commitb42bdce87413fd991dfa3e0801aedf4eea6b112a (patch)
tree374d20066f45daed2c4f9c5d5c6992870f23c97c
parent25a81f65339fd81fd7f7fabc80be53999aa3f0c0 (diff)
downloadlibsoup-b42bdce87413fd991dfa3e0801aedf4eea6b112a.tar.gz
2.63.12.63.1
-rw-r--r--NEWS18
-rw-r--r--configure.ac4
-rw-r--r--meson.build2
3 files changed, 21 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 9f9cd5ad..7d95ac25 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,21 @@
+Changes in libsoup from 2.62.0 to 2.63.1:
+
+ * Fix digest authentication with encoded URIs [#794208,
+ Claudio Saavedra]
+ * Avoid unaligned memory accesses in WebSocket implementation
+ [#794421, Rolf Eike Beer]
+ * Use base domain to decide if cookies are third-party [#792130,
+ Michael Catanzaro]
+ * Fix crash under soup_socket_new() [#762138, Milan Crha]
+ * Use libpsl for the SoupTLD API instead of shipping a copy of
+ the public-suffix list [#769650, Claudio Saavedra]
+ * Introspection documentation fixes [#795135, Claudio Saavedra]
+ * Minor cleanups and fixes [Tomas Popela]
+ * Initial meson build system support [#784212, Sebastian Dröge,
+ Chun-wei Fan, Tomas Popela]
+ * Various fixes to the meson build system [#795233, Iñigo Martinez]
+ * Updated translations: Chinese, Croatian, Italian, Slovak.
+
Changes in libsoup from 2.61.91 to 2.62.0:
* Updated translations.
diff --git a/configure.ac b/configure.ac
index 668c0fdf..fe3ab28f 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3,8 +3,8 @@ dnl *** Initialize automake and set version ***
dnl *******************************************
m4_define([soup_major_version], [2])
-m4_define([soup_minor_version], [62])
-m4_define([soup_micro_version], [0])
+m4_define([soup_minor_version], [63])
+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])
diff --git a/meson.build b/meson.build
index 615c3f4a..1acf6e3f 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libsoup', 'c',
- version: '2.61.90',
+ version: '2.63.1',
meson_version : '>=0.43',
license : 'LGPL2',
default_options : 'c_std=c89')