summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Griffis <pgriffis@igalia.com>2022-03-18 12:43:24 -0500
committerPatrick Griffis <pgriffis@igalia.com>2022-03-18 12:43:24 -0500
commitae827ef05b97f4fe1c3dc7aeea64cce9c958ecdc (patch)
tree7e1da77b5dff3a0aa06ca22e2b3e8c7cf9b4bc93
parent45c9b9cce3241191b200ec78503ce6dacb179a8b (diff)
downloadlibsoup-ae827ef05b97f4fe1c3dc7aeea64cce9c958ecdc.tar.gz
3.0.53.0.5
-rw-r--r--NEWS8
-rw-r--r--meson.build4
2 files changed, 10 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 2e8ffb26..838c578f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,11 @@
+Changes in libsoup from 3.0.4 to 3.0.5:
+
+* Misc HTTP/2 fixes [Carlos Garcia Campos]
+* Fix missing files for installed-tests [Simon McVittie]
+* Fix SoupServer not properly handling invalid percent encoded paths [Ignacio Casal Quinteiro]
+* Fix other areas not properly handling invalid percent encoded paths [Patrick Griffis]
+* Fix SoupLogger:max-body-size of 0 meaning log nothing [Patrick Griffis]
+
Changes in libsoup from 3.0.3 to 3.0.4:
* Fix HTTP/2 not properly handling socket timeouts [Carlos Garcia Campos]
diff --git a/meson.build b/meson.build
index 652d328a..1d4fdfb8 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('libsoup', 'c',
- version: '3.0.4',
+ version: '3.0.5',
meson_version : '>= 0.53',
license : 'LGPL-2.0-or-later',
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.4'
+libversion = '0.0.5'
apiversion = '3.0'
soversion = libversion.split('.')[0]
libsoup_api_name = '@0@-@1@'.format(meson.project_name(), apiversion)