summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2012-10-22 22:20:47 +0200
committerRyan Lortie <desrt@desrt.ca>2012-10-22 22:20:47 +0200
commit7d17fd6f61781e73c4304016d09be091d5045145 (patch)
tree2f460d0e4957c2c33c0ecf11f158359c471f1f4d
parent05756f84187c6ceef2c24ad7535284c691ec4c8a (diff)
downloadglib-2.35.1.tar.gz
Release GLib 2.35.12.35.1
-rw-r--r--NEWS61
-rw-r--r--configure.ac2
2 files changed, 62 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index 6427be719..f62a09df8 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,64 @@
+Overview of changes from GLib 2.34.0 to 2.35.1
+==============================================
+
+These two changes in particular may be slightly incompatible. Please
+give feedback if they cause trouble:
+
+ * Signal handlers connected with g_signal_connect_object() are now
+ automatically disconnected on target object destruction
+
+ * The ->constructed vfunc is now called after all properties are set
+
+The remaining changes should not cause problems.
+
+ * g_type_init() is no longer necessary and has been deprecated
+
+ * GTask (the new GAsyncResult implementation) has landed
+
+ * GLib version macros updated
+
+ * Update to Unicode 6.2
+
+ * Thread safety fixes for GFileMonitor in non-default main contexts
+
+ * GTimeZone support for old-format zoneinfo database (as on Mac OS)
+
+ * g_settings_bind() now works with non-canonical property names
+
+ * Fix crashes related to NULL connection passed to
+ GBusNameVanishedCallback and document this situation
+
+* Bugs fixed:
+ 118536 Make g_signal_connect_object'ed handlers disconnect when the data object is destroyed
+ 661767 merge/improve various bits of run-in-thread functionality
+ 682950 GFileMonitor crashing on high event count when running in different thread
+ 683642 Missing g_content_type_get_symbolic_icon
+ 684882 Gsettings should spaw a warning when binding against a low_underscored_property
+ 684909 codegen: Explicitly close output
+ 684912 Update to Unicode 6.2
+ 685037 g_strcmp0: Returns shall include values less and greater than zero
+ 685069 Leak in glib-compile-resources
+ 685208 missing g_return_if_fail
+ 685608 [Patch] Port gio tests from pygobject to pygi
+ 685697 Documentation typo in g_dbus_interface_skeleton_has_connection()
+ 685733 Call ->constructed() after all properties are set
+ 685787 gtestdbus: correct documentation typos
+ 685995 Crash in g_menu_exporter_name_vanished
+ 686091 Invalid reads in g_bytes_unref_to_data
+ 686119 dtrace, gobject_probes.d, the last three probes - semicolon missing
+ 686161 Deprecate g_type_init()
+ 686231 GBusNameVanishedCallback: document NULL connection
+ 686458 slightly increase poll duration in test_timed_wait
+
+* Translations updated
+ Catalan (Valencian)
+ Czech
+ Danish
+ Italian
+ Lithuanian
+ Norwegian bokmål
+ Slovenian
+
Overview of changes from GLib 2.33.14 to 2.34.0
===============================================
diff --git a/configure.ac b/configure.ac
index 6585bcd49..5c112eafe 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], [35])
-m4_define([glib_micro_version], [0])
+m4_define([glib_micro_version], [1])
m4_define([glib_interface_age], [0])
m4_define([glib_binary_age],
[m4_eval(100 * glib_minor_version + glib_micro_version)])