diff --git a/NEWS b/NEWS index 2dc2d17ce..67bc3e46c 100644 --- a/NEWS +++ b/NEWS @@ -1,9 +1,20 @@ Overview of changes from GLib 2.31.2 to 2.31.4 ============================================== -* Menu support has been added to GApplication. Menus - are exported on the bus, alongside the actions that are - already there. +* EXPERIMENTAL: Menu support has been added to GApplication. Menus + are exported on the bus, alongside the actions that are already there. + There have also been many related improvements to action group + functionality. + + These new APIs are subject to changes in the coming releases. In + particular, it seems somewhat likely that the APIs for registering + menubars may change in order to accommodate windows with different + types of menubars. + +* GDBusConnection previously directly dispatched destroy notifies when + unregistering objects if the current main context was the same context + the object was exported on. It now unconditionally dispatches these + through an idle on the context. * Clean up Requires in pc files. Linking against GIO no longer drags in gmodule. This may require dependency diff --git a/configure.ac b/configure.ac index ca4474714..4011d8196 100644 --- a/configure.ac +++ b/configure.ac @@ -27,7 +27,7 @@ m4_define(glib_configure_ac) m4_define([glib_major_version], [2]) m4_define([glib_minor_version], [31]) -m4_define([glib_micro_version], [3]) +m4_define([glib_micro_version], [4]) m4_define([glib_interface_age], [0]) m4_define([glib_binary_age], [m4_eval(100 * glib_minor_version + glib_micro_version)])