summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmmanuele Bassi <ebassi@linux.intel.com>2012-05-28 16:45:05 +0100
committerEmmanuele Bassi <ebassi@linux.intel.com>2012-05-28 16:45:05 +0100
commite60e74e46fb46b11758ef341352baed240f56ae9 (patch)
tree51813ceba33da63093a2201cc1a94a86c716e084
parentf6ce2a93881f7faf00e6eeb27bbce50904714ffa (diff)
downloadclutter-e60e74e46fb46b11758ef341352baed240f56ae9.tar.gz
Release Clutter 1.10.6 (stable)1.10.6
-rw-r--r--NEWS35
-rw-r--r--configure.ac4
2 files changed, 37 insertions, 2 deletions
diff --git a/NEWS b/NEWS
index 835356e07..e11283258 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,38 @@
+Clutter 1.10.6 2012-05-28
+===============================================================================
+
+ • List of changes since Clutter 1.10.4
+
+ - Fix assertions and segfaults with touch events
+
+ - Drop usage of GL types in Clutter
+ C, GLib, and Cogl provide the same exact types, and we also get to drop
+ the dependency on the GL header.
+
+ - Update Visual Studio project files and build rules
+
+ - Fix assertion error in ClutterFlowLayout
+
+ - Re-allow passing NULL in clutter_text_set_text()
+ The switch to ClutterTextBuffer introduced a regression.
+
+ - Add missing annotations in ClutterText
+
+ • List of bugs fixed since Clutter 1.10.4
+
+ [bugzilla.gnome.org]
+ #675371 - Asserts when getting touch events
+ #676150 - Fix GDK backend build on Windows
+ #676068 - Setting size on ClutterFlowLayout container crashes
+ #675890 - Passing NULL buffer to clutter_text_set_text() will not reset
+ the buffer and segfault
+ #675396 - Possible bug in _clutter_paint_volume_axis_align
+
+Many thanks to:
+
+ Chun-wei Fan, Bastien Nocera, Bastian Winkler, Dominique Bureau,
+ Mike Ruprecht, Neil Roberts, Sasi Bhushan, Tristan Van Berkom.
+
Clutter 1.10.4 2012-05-01
===============================================================================
diff --git a/configure.ac b/configure.ac
index b8b7a0f20..f9a4d3829 100644
--- a/configure.ac
+++ b/configure.ac
@@ -10,7 +10,7 @@
# - increase clutter_interface_version to the next odd number
m4_define([clutter_major_version], [1])
m4_define([clutter_minor_version], [10])
-m4_define([clutter_micro_version], [5])
+m4_define([clutter_micro_version], [6])
# • for stable releases: increase the interface age by 1 for each release;
# if the API changes, set to 0. interface_age and binary_age are used to
@@ -31,7 +31,7 @@ m4_define([clutter_micro_version], [5])
# ...
#
# • for development releases: keep clutter_interface_age to 0
-m4_define([clutter_interface_age], [5])
+m4_define([clutter_interface_age], [6])
m4_define([clutter_binary_age], [m4_eval(100 * clutter_minor_version + clutter_micro_version)])