diff options
author | Ryan Lortie <desrt@desrt.ca> | 2011-07-22 08:55:35 +0200 |
---|---|---|
committer | Ryan Lortie <desrt@desrt.ca> | 2011-07-22 08:55:35 +0200 |
commit | a6c936c45fd959117e24a4e7b6f01f124963bf72 (patch) | |
tree | b59a093ca5cb0f1546c6cbc26bb91c7079f2eafc | |
parent | b30ca6e5a57fd40cf8f94ef2869e742498bc0577 (diff) |
Release 2.29.142.29.14
-rw-r--r-- | NEWS | 49 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 50 insertions, 1 deletions
@@ -1,3 +1,52 @@ +Overview of changes from GLib 2.29.12 to 2.29.14 +================================================ + +* Unicode improvements + - add g_unicode_script_{to,from}_iso15924 + - add G_UNICODE_SPACING_MARK define + - more normalisation improvements + - stop using deprecated g_unicode_canonical_decomposition() + +* GParamSpec: + - mark the 'name' field as 'const' and add a comment to the header to + help avoid future problems caused by bad hacks + +* Merge some (modified) patches from Debian: + - 03_blacklist-directories.patch + - add some blacklisted mount directories + - 60_wait-longer-for-threads-to-die.patch + - sleep longer in a test case, if needed to avoid failing + +* Units policy change: prefer use of SI units + - deprecate g_format_size_for_display, add g_format_size(_full) + +* GSettings: don't call g_error() when the schema is missing + +* GVariant support for arrays of object paths: + - new g_variant_{new,get,dup}_objv API + - support for g_variant_{new,get} '^ao' and '^a&o' similar to '^as' + +* GDBus: + - use new improved array-of-objects support and pass 'ao' as char** + instead of GVariant* + - improve handling of 'h' type (Unix file descriptor index) + +* GIO: + - fix compilation without USE_STATFS and USE_STATVFS + +* Documentation fixes + +* Bugs fixed: + 622921 Migrate from dbus-glib to glib's GDBus + 648271 Add g_unicode_script_to_iso15924() + 654948 Stop using deprecated g_unicode_canonical_decomposition() + 654988 g_atomic_int_add should document behaviour change + 655025 #define G_UNICODE_SPACING_MARK G_UNICODE_COMBINING_MARK + 655076 normalization misses some Full_Composition_Exclusion=True. + +* Translations updated: + Spanish + Overview of changes from GLib 2.29.10 to 2.29.12 ================================================ diff --git a/configure.ac b/configure.ac index f8127fee4..66b1b8f46 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], [29]) -m4_define([glib_micro_version], [13]) +m4_define([glib_micro_version], [14]) m4_define([glib_interface_age], [0]) m4_define([glib_binary_age], [m4_eval(100 * glib_minor_version + glib_micro_version)]) |