summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2021-10-24 11:25:27 -0500
committerPatrick Griffis <pgriffis@igalia.com>2021-10-24 11:26:04 -0500
commitead1754ddf7a8935cdaf0372afccf7970856b575 (patch)
treec203201c4f52f5af7801633122a59c7e8e20a249
parent35ff116569428394a114e260d698554adab2501c (diff)
downloadlibsoup-ead1754ddf7a8935cdaf0372afccf7970856b575.tar.gz
3.0.23.0.2
-rw-r--r--NEWS15
-rw-r--r--meson.build4
2 files changed, 17 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index eb4b2d99..e4110e68 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,18 @@
+Changes in libsoup from 3.0.1 to 3.0.2:
+
+* Add support for multiple auth challenges in one response [Patrick Griffis]
+
+* Fix SoupCache test failures on 32bit [Patrick Griffis]
+
+* Don't treat `-Wincompatible-pointer-types` as error
+ The `glib-mkenums` tool sometimes triggered this [Patrick Griffis]
+
+* Improve `gssapi` dependency handling [Nirbheek Chauhan]
+
+* Fix undefined `ssize_t` on Windows [Chun-wei Fan]
+
+* Updated translations: Hebrew
+
Changes in libsoup from 3.0.0 to 3.0.1:
* Move python overrides to upstream pygobject [Patrick Griffis]
diff --git a/meson.build b/meson.build
index aa6d07cd..8fabd754 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libsoup', 'c',
- version: '3.0.1',
+ version: '3.0.2',
meson_version : '>= 0.53',
license : 'LGPL2',
default_options : [
@@ -19,7 +19,7 @@ soup_version = meson.project_version()
#
# When bumping the first component version, set the second and third components
# to 0. When bumping the second version, set the third one to zero.
-libversion = '0.0.1'
+libversion = '0.0.2'
apiversion = '3.0'
soversion = libversion.split('.')[0]
libsoup_api_name = '@0@-@1@'.format(meson.project_name(), apiversion)