From d05783675b1efc1f159c8218815b8d230c6f18b1 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 14 Jan 2008 10:39:41 +0000 Subject: [PATCH] 2008-01-14 Emmanuele Bassi * configure.ac: Post-release bump to 0.5.3 * README: * NEWS: Release 0.5.2 --- ChangeLog | 7 +++++++ NEWS | 19 ++++++++++++++++++- README | 6 +++++- configure.ac | 2 +- 4 files changed, 31 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 10d5d6a66..11d1debfb 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-01-14 Emmanuele Bassi + + * configure.ac: Post-release bump to 0.5.3 + + * README: + * NEWS: Release 0.5.2 + 2008-01-14 Emmanuele Bassi * clutter.symbols: Add clutter_model_insertv() diff --git a/NEWS b/NEWS index 5ce241d91..410fcac7f 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,22 @@ +Clutter 0.5.2 (14/01/2008) +========================== + + * List of changes between 0.5.0 and 0.5.2 + + o ClutterModelDefault has been renamed to ClutterListModel + + o ClutterModel now has vector-based variants for append, prepend and + insert methods; these methods are useful for bindings + + o Add units-based variant for clutter_actor_move_by() + + * List of bugs fixed + + o #694 - Handle GLhandleARB on OS X [Tommi Komulainen] + o #700 - Fix for clutter_effect_rotate() [Neil Roberts] + Clutter 0.5.0 (02/01/2008) -======================== +========================== * List of changes between 0.4.2 and 0.5.0 diff --git a/README b/README index 2bee47d61..5f5ae744a 100644 --- a/README +++ b/README @@ -8,7 +8,7 @@ Clutter currently requires: * GLib >= 2.14.0 * GdkPixbuf - * Pango 1.x + * Pango 1.18 * OpenGL >= 1.2 or OpenGL ES 1.1 * GLX, SDL or an EGL Implementation @@ -84,6 +84,9 @@ expected to be ABI compatible with other micro versions. Though this is not guarenteed, especially for odd numbered minor releases, we'll try our very hardest (promise). +The micro version indicates the origin of the release: even micro +numbers are only used for released archives; odd micro numbers are +only used on the SVN repository. HACKING ==== @@ -102,6 +105,7 @@ You will need an account. In the report you should include: * what system you're running Clutter on; +* which version of Clutter you are using; * which version of GLib, GdkPixbuf and OpenGL you are using; * which video card and which drivers you are using, including output of glxinfo and xdpyinfo. diff --git a/configure.ac b/configure.ac index 27a9eb41e..ccc6b71a6 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ # An even micro number indicates a released version. m4_define([clutter_major_version], [0]) m4_define([clutter_minor_version], [5]) -m4_define([clutter_micro_version], [1]) +m4_define([clutter_micro_version], [3]) m4_define([clutter_version], [clutter_major_version.clutter_minor_version.clutter_micro_version])