2008-01-14 Emmanuele Bassi <ebassi@openedhand.com>

* configure.ac: Post-release bump to 0.5.3

	* README:
	* NEWS: Release 0.5.2
This commit is contained in:
Emmanuele Bassi 2008-01-14 10:39:41 +00:00
parent ccc4ad400b
commit d05783675b
4 changed files with 31 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2008-01-14 Emmanuele Bassi <ebassi@openedhand.com>
* configure.ac: Post-release bump to 0.5.3
* README:
* NEWS: Release 0.5.2
2008-01-14 Emmanuele Bassi <ebassi@openedhand.com> 2008-01-14 Emmanuele Bassi <ebassi@openedhand.com>
* clutter.symbols: Add clutter_model_insertv() * clutter.symbols: Add clutter_model_insertv()

19
NEWS
View File

@ -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) Clutter 0.5.0 (02/01/2008)
======================== ==========================
* List of changes between 0.4.2 and 0.5.0 * List of changes between 0.4.2 and 0.5.0

6
README
View File

@ -8,7 +8,7 @@ Clutter currently requires:
* GLib >= 2.14.0 * GLib >= 2.14.0
* GdkPixbuf * GdkPixbuf
* Pango 1.x * Pango 1.18
* OpenGL >= 1.2 or OpenGL ES 1.1 * OpenGL >= 1.2 or OpenGL ES 1.1
* GLX, SDL or an EGL Implementation * 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 is not guarenteed, especially for odd numbered minor releases, we'll
try our very hardest (promise). 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 HACKING
==== ====
@ -102,6 +105,7 @@ You will need an account.
In the report you should include: In the report you should include:
* what system you're running Clutter on; * 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 version of GLib, GdkPixbuf and OpenGL you are using;
* which video card and which drivers you are using, including output of * which video card and which drivers you are using, including output of
glxinfo and xdpyinfo. glxinfo and xdpyinfo.

View File

@ -3,7 +3,7 @@
# An even micro number indicates a released version. # An even micro number indicates a released version.
m4_define([clutter_major_version], [0]) m4_define([clutter_major_version], [0])
m4_define([clutter_minor_version], [5]) m4_define([clutter_minor_version], [5])
m4_define([clutter_micro_version], [1]) m4_define([clutter_micro_version], [3])
m4_define([clutter_version], m4_define([clutter_version],
[clutter_major_version.clutter_minor_version.clutter_micro_version]) [clutter_major_version.clutter_minor_version.clutter_micro_version])