diff options
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | NEWS | 33 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 37 insertions, 3 deletions
@@ -1,3 +1,5 @@ +2.20.1 + 2009-06-22 José Alburquerque <jaalburqu@svn.gnome.org> * glib/src/date.ccg: Check for an invalid date in copy constructor and @@ -26,7 +28,6 @@ Now I find that it is difficult to keep patching the generated defs files in gstreamermm. Since permission was granted, I'm re-applying it once and for all. - 2009-05-19 Siavash Safi <siavash@siavashs.org> @@ -57,7 +58,7 @@ 2009-04-27 Siavash Safi <siavash@siavashs.org> - * gio/src/file.ccg: Added the missing defenitions for + * gio/src/file.ccg: Added the missing definitions for Gio::File::make_directory_with_parents() 2009-04-27 Jonathon Jongsma <jonathon@quotidian.org> @@ -1,3 +1,36 @@ +2.20.1 (stable): + +Glib: +* Date: Constructor: Check for invalid dates. + (José Alburquerque) +* ustring: Make the relational operators work with mixed argument types. + (Chris Vine) Bug #580773 + +* Allow dynamic GType registration, though this is not yet fully tested: + Class: Added a register_derived_type(GTypeModule*) overload to + call g_type_module_register_type() instead of g_type_register_static(). + gmmproc: Added a _DYNAMIC_GTYPE_REGISTRATION() macro to + be used in the class in the hg file, to add a *_Class::init(GTypeModule) + method, and a get_type(GTypeModule*) method that calls it. + +Gio: +* File: Added the missing make_directory_with_parents() definition. + (Siavash Safi) + + +Build: +* Fix the build with exceptions disabled. + (Daniel Elstner, José Alburquerque) +* Fix compiler warnings. + (Daniel Elstner, Hubert Figuiere) +* Windows build fixes. + (Armin Burgmeier) + +Documentation: +* Improve the guessing of C++ method names for C function names. + (Johannes Schmid) + + 2.20.0 (stable): * Documentation fixes (Daniel Elstner) diff --git a/configure.ac b/configure.ac index 4dd4073b..a39e7caa 100644 --- a/configure.ac +++ b/configure.ac @@ -14,7 +14,7 @@ pushdef([GLIBMM_MAJOR_VERSION], [2]) pushdef([GLIBMM_MINOR_VERSION], [20]) -pushdef([GLIBMM_MICRO_VERSION], [0]) +pushdef([GLIBMM_MICRO_VERSION], [1]) pushdef([GLIBMM_EXTRA_VERSION], []) pushdef([GLIBMM_VERSION], GLIBMM_MAJOR_VERSION.GLIBMM_MINOR_VERSION.GLIBMM_MICRO_VERSION[]GLIBMM_EXTRA_VERSION) |