summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Withnall <withnall@endlessm.com>2018-09-21 10:41:56 +0100
committerPhilip Withnall <withnall@endlessm.com>2018-09-21 10:41:56 +0100
commitc5b577fbf5f15fd9ee1ba9e65030d4609e9c8cf3 (patch)
treee1d0b4609cda98df44f32492eeea987fcfcfebc0
parente8756552e98b110afffcebd9f8d6b9c909ded358 (diff)
2.56.32.56.3
Signed-off-by: Philip Withnall <withnall@endlessm.com>
-rw-r--r--NEWS28
-rw-r--r--configure.ac4
-rw-r--r--meson.build2
3 files changed, 31 insertions, 3 deletions
diff --git a/NEWS b/NEWS
index 6ea999b93..e0f89d44c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,31 @@
+Overview of changes in GLib 2.56.3
+==================================
+
+* The documentation for G_GNUC_MALLOC has changed to be more restrictive to
+ avoid miscompilations; you should check whether any uses of it in your code
+ are appropriate
+* Fix cancellation of g_subprocess_communicate_async() calls
+
+* Bug fixes:
+ #1518 /network-monitor/create-in-thread fails in (LXC) containers on glib-2-56
+ #1461 GBookmarkFile: nullptr access in current_element
+ #1462 GBookmarkFile: heap-buffer-overflow in g_utf8_get_char
+ !278 Backport g_subprocess_communicate() cancellation fixes from !266 to glib-2-56
+ #1465 Many uses of G_GNUC_MALLOC are incorrect
+ #1472 Test for BROKEN_IP_MREQ_SOURCE_STRUCT is broken on Windows / Mingw
+ !259 Fix persistent CI failure on glib-2-56
+
+* Translation updates:
+ Brazilian Portuguese
+ Czech
+ German
+ Hungarian
+ Indonesian
+ Polish
+ Slovenian
+ Swedish
+
+
Overview of changes in GLib 2.56.2
==================================
diff --git a/configure.ac b/configure.ac
index 04e9ca7a5..99f1ae2bd 100644
--- a/configure.ac
+++ b/configure.ac
@@ -31,8 +31,8 @@ m4_define(glib_configure_ac)
m4_define([glib_major_version], [2])
m4_define([glib_minor_version], [56])
-m4_define([glib_micro_version], [2])
-m4_define([glib_interface_age], [2])
+m4_define([glib_micro_version], [3])
+m4_define([glib_interface_age], [3])
m4_define([glib_binary_age],
[m4_eval(100 * glib_minor_version + glib_micro_version)])
m4_define([glib_version],
diff --git a/meson.build b/meson.build
index de18f191f..a28642ede 100644
--- a/meson.build
+++ b/meson.build
@@ -1,5 +1,5 @@
project('glib', 'c', 'cpp',
- version : '2.56.2',
+ version : '2.56.3',
meson_version : '>= 0.44.0',
default_options : [
'warning_level=1',