diff options
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | NEWS | 9 | ||||
-rw-r--r-- | configure.in | 4 |
3 files changed, 13 insertions, 2 deletions
@@ -1,3 +1,5 @@ +2.5.6: + 2005-02-18 Murray Cumming <murrayc@murrayc.com> * glib/glibmm/interface.cc: Interface_Class:add_interface(), used by @@ -1,3 +1,12 @@ +2.5.6: + +* add_interface() methods will no longer give warnings if you +call them twice. +* gmmproc: Output properties documentation taken from the .defs. +* examples now build on AIX. + (Murray Cumming) +* MSVC++ .Net 2003 build fix. (Cedric Gustin) + 2.5.5: * Now builds with the following compilers, in addition to diff --git a/configure.in b/configure.in index 9fc23beb..0155218c 100644 --- a/configure.in +++ b/configure.in @@ -19,7 +19,7 @@ AC_PREREQ(2.50) ######################################################################### GLIBMM_MAJOR_VERSION=2 GLIBMM_MINOR_VERSION=5 -GLIBMM_MICRO_VERSION=5 +GLIBMM_MICRO_VERSION=6 GLIBMM_VERSION=$GLIBMM_MAJOR_VERSION.$GLIBMM_MINOR_VERSION.$GLIBMM_MICRO_VERSION GLIBMM_RELEASE=$GLIBMM_MAJOR_VERSION.$GLIBMM_MINOR_VERSION AC_DEFINE_UNQUOTED(GLIBMM_MAJOR_VERSION, $GLIBMM_MAJOR_VERSION) @@ -38,7 +38,7 @@ AC_SUBST(GLIBMM_RELEASE) # ? :+1 : ? == just some internal changes, nothing breaks but might work # better # CURRENT : REVISION : AGE -LIBGLIBMM_SO_VERSION=1:10:0 +LIBGLIBMM_SO_VERSION=1:11:0 AC_SUBST(LIBGLIBMM_SO_VERSION) AC_CONFIG_AUX_DIR(scripts) |