This commit is contained in:
Matthias Clasen 2017-08-07 11:13:16 -04:00
parent 7c97e3d784
commit 47e10489c5
3 changed files with 28 additions and 2 deletions

26
NEWS
View File

@ -1,3 +1,29 @@
Overview of changes in GLib 2.53.5
==================================
* Bugs fixed:
695573 Untranslatable strings in glib-compile-schemas
725950 GApplication: call dbus_unregister only once, and before destruction
731703 giomodule test misbuilds its test modules as libraries
769135 External control for g_test_add/g_test_run
779332 Rewrite mkenums in Python
779607 Race between mounts-changed signal and g_unix_mounts_get() function
784000 Improve strerror_r() detection
784815 Map G_NOTIFICATION_PRIORITY_HIGH to NOTIFY_URGENCY_NORMAL
784965 Use the glib preset for i18n in Meson
784995 meson: some Windows improvements
785113 glib-mkenums Python port fixes
785130 G_LOG_DOMAIN shouldn't be left undefined for applications
785438 Spurious -Wmaybe-uninitialized in gdatetime.c
785468 glib/gpoll: Unnecessary if conditional included in the poll_rest() function
785520 Replace advice to use removed gdk_spawn functions
785577 clobbers errno while setting GError
* Translation updates:
Slovenian
Spanish
Overview of changes in GLib 2.53.4
==================================

View File

@ -31,7 +31,7 @@ m4_define(glib_configure_ac)
m4_define([glib_major_version], [2])
m4_define([glib_minor_version], [53])
m4_define([glib_micro_version], [4])
m4_define([glib_micro_version], [5])
m4_define([glib_interface_age], [0])
m4_define([glib_binary_age],
[m4_eval(100 * glib_minor_version + glib_micro_version)])

View File

@ -1,5 +1,5 @@
project('glib', 'c', 'cpp',
version : '2.53.3',
version : '2.53.5',
meson_version : '>= 0.38.1',
default_options : [
'warning_level=1',