diff options
author | Matthias Clasen <mclasen@redhat.com> | 2015-09-01 10:58:32 -0400 |
---|---|---|
committer | Matthias Clasen <mclasen@redhat.com> | 2015-09-01 10:58:32 -0400 |
commit | f14e2e5c53a5f1113c5e063511b7ea31319f4ccf (patch) | |
tree | 00311b77b7528182fc4edc401dd30b10daa30732 | |
parent | b04c565f33edbe7b81b028ba371da93b946f6393 (diff) | |
download | glib-f14e2e5c53a5f1113c5e063511b7ea31319f4ccf.tar.gz |
2.45.72.45.7
-rw-r--r-- | NEWS | 47 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 48 insertions, 1 deletions
@@ -1,3 +1,50 @@ +Overview of changes in GLib 2.45.7 +================================== + +* Add G_FILE_ATTRIBUTE_STANDARD_IS_VOLATILE for use by non-POSIX-like + backends (e.g. cloud storage). + +* GFileMonitor: Make the inotify backend work with atomic renames again + +* GSettings: change notification is again working unconditionally + +* GListStore has a sort function now + +* Test infrastructure: + - Tests are now required to have unique names + - TAP support has been improved + - A macro for asserting that two memory regions have identical content + has been added + +* Bugs fixed: + 708525 A "g_file_query_info" on the file path "/sys/kernel/debug/hid"... + 742849 inotify: send paired events to both sides + 744060 Update GObject tutorial documentation to use G_DECLARE_FINAL_T... + 747364 Fix GError leak in g_file_query_writable_namespaces() + 749492 Support file creation time on FreeBSD and NetBSD + 752769 (g_socket_receive_message | g_socket_send_message) performance + 753745 glib-genmarshal still needed for cross-compilation + 754152 Add g_list_store_sort + 754211 Memory leak in g_file_enumerator_iterate () + 754264 GLib 2.44 certificate chain construction fails if the PEM incl... + 754283 gtestutils: add g_assert_cmpmem() + 754284 gtestutils: print the TAP test plan first, not last + 754286 misc gtestutils fixes + 754307 size of array '_GStaticAssertCompileTimeAssertion_3387' is neg... + + +* Translation updates: + Chinese (Taiwan) + French + Galician + Greek + Hebrew + Hungarian + Indonesian + Polish + Portuguese + + Overview of changes in GLib 2.45.6 ================================== diff --git a/configure.ac b/configure.ac index 3534ade90..975f7cd73 100644 --- a/configure.ac +++ b/configure.ac @@ -31,7 +31,7 @@ m4_define(glib_configure_ac) m4_define([glib_major_version], [2]) m4_define([glib_minor_version], [45]) -m4_define([glib_micro_version], [6]) +m4_define([glib_micro_version], [7]) m4_define([glib_interface_age], [0]) m4_define([glib_binary_age], [m4_eval(100 * glib_minor_version + glib_micro_version)]) |