diff options
author | Ryan Lortie <desrt@desrt.ca> | 2011-09-26 17:15:41 -0400 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2011-09-26 17:15:41 -0400 |
commit | f02f84e1cc08be28c2bad19f94153cf9c50a58cd (patch) | |
tree | 3afe37e0065e5b507c6e5358d033bd2329a4a9a1 | |
parent | d0b2a1733861920a4a4a900e8c402f0769a99be8 (diff) |
glib 2.30.02.30.0
-rw-r--r-- | NEWS | 59 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 61 insertions, 2 deletions
@@ -1,3 +1,62 @@ +Overview of changes from GLib 2.29.92 to 2.30.0 +=============================================== + +This release contains an ABI change: code written by the GDBus code +generation in this version of GLib is not compatible with earlier +versions of the library (and vice versa). + +* GDBus changes: + - change property API to avoid namespace problems + - use correct object path in export_uniquely() method of + GDBusObjectManagerServer + - docs and tests improvements + - better handling of Ugly_Case method names + - build fixes for generated code + +* Unix mounts: + - BSD compile fixes + - ignore mounts with mountpoint "none" (as swap is on Debian) + +* GMappedFile: + - return an error when trying to mmap device files (like /dev/stdin) + +* gio-2.0.pc.in: drop stray reference to libasyncns + +* introspection annotation improvements, docs fixes + +* avoid double close() on the fd of a stream after splicing + +* desktop file handling: avoid mimeapps.list corruption issue + +* Bugs fixed: + 654563 info capplet: Failed to calculate disk space + 658188 _set_as_last_used_for_type generates a broken mimeapps.list + 658692 add introspection annotations to g_time_val_from_iso8601() + 659324 SPLICE_CLOSE_TARGET doesn't mark the output stream as closed + 659528 unbreak compilation on BSD systems + 659646 gdbus-codegen produce code that warnings at build + 659690 Possible build warning in code generated by gdbus-codegen + 659699 property name collision when generating code for "Connection" + 659794 gmappedfile.c-No S_ISREG on certain Windows compilers + 659838 incorrect argument types in for g_object_bind_property + 659889 glib-2.29.92/gio-2.0.pc.in has a wrong line. + +* Translation updates: + Assamese + Basque + Bulgarian + Catalan + Catalan (Valencian) + Czech + Danish + Esperanto + German + Gujarati + Lithuanian + Oriya + Serbian + Slovenian + Overview of changes from GLib 2.29.90 to 2.29.92 ================================================ diff --git a/configure.ac b/configure.ac index b488b2bf4..9123b0682 100644 --- a/configure.ac +++ b/configure.ac @@ -26,8 +26,8 @@ m4_define(glib_configure_ac) # <mclasen> on the unstable (ie master), interface age = 0 m4_define([glib_major_version], [2]) -m4_define([glib_minor_version], [29]) -m4_define([glib_micro_version], [92]) +m4_define([glib_minor_version], [30]) +m4_define([glib_micro_version], [0]) m4_define([glib_interface_age], [0]) m4_define([glib_binary_age], [m4_eval(100 * glib_minor_version + glib_micro_version)]) |