From 9cb351f39396e5b27c716a20824fce31e5e1244a Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 14 Apr 2014 22:53:19 +0100 Subject: [PATCH] Release Clutter 1.18.2 --- NEWS | 41 +++++++++++++++++++++++++++++++++++++++++ configure.ac | 4 ++-- 2 files changed, 43 insertions(+), 2 deletions(-) diff --git a/NEWS b/NEWS index 3a8bbaea6..96b05ec78 100644 --- a/NEWS +++ b/NEWS @@ -1,3 +1,44 @@ +Clutter 1.18.2 2014-04-14 +=============================================================================== + + • List of changes since Clutter 1.18.0 + + - Fix the list of dependencies + Clutter 1.18 depends on Cogl 1.17.5 when building the EGL/KMS backend. + + - Fixes for the Visual Studio build files + Use the new symbol visibility annotations when building with MSVC. + + - Fix event handling on Windows + An optimization led to a crash on the Windows backend when delivering + events without an associated ClutterStage. + + - Ensure that set_child_above/below work on the Stage + ClutterStage should respect the paint order when using the Actor API. + + - Skip conformance test suite on X11 when DISPLAY is unset + Instead of bailing out when initializing the test suite we should just + tell the test suite API to skip the units. This allows the TAP driver + to catch the skipped tests and avoid warnings. + + - Translation updates + Danish, French, Indonesian, Greek. + + • List of bugs fixed since Clutter 1.18.0 + + #728177 - Cannot collect coverage with lcov 1.10 + #727020 - wayland: Add missing CLUTTER_AVAILABLE annotations + #711645 - clutter_actor_set_child_above_sibling() not working in + ClutterStage + #726762 - Fix Import of Clutter Version Constants + #726703 - build error: undefined reference to + `cogl_kms_renderer_set_kms_fd' + +Many thanks to: + + Chun-wei Fan, Adel Gadllah, Andika Triwidada, Ask H. Larsen, David Warman, + Emilio Pozuelo Monfort, Vadim Rutkovsky, maria thukididu, teuf. + Clutter 1.18.0 2014-03-18 =============================================================================== diff --git a/configure.ac b/configure.ac index 29203871c..3ed4fd55e 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], [18]) -m4_define([clutter_micro_version], [1]) +m4_define([clutter_micro_version], [2]) # • 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], [1]) # ... # # • for development releases: keep clutter_interface_age to 0 -m4_define([clutter_interface_age], [1]) +m4_define([clutter_interface_age], [2]) m4_define([clutter_binary_age], [m4_eval(100 * clutter_minor_version + clutter_micro_version)])