diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | configure.ac | 10 |
3 files changed, 13 insertions, 6 deletions
@@ -1,3 +1,9 @@ +2006-03-03 Marcus Brinkmann <[email protected]> + + * configure.ac (LIBGPG_ERROR_LT_CURRENT, LIBGPG_ERROR_LT_AGE): + Bump for release. + (LIBGPG_ERROR_LT_REVISION): Reset to 0 for release. + 2005-11-02 Werner Koch <[email protected]> * src/Makefile.am (gpg_error_SOURCES): Include ARCH_SOURCES. @@ -1,4 +1,4 @@ -Noteworthy changes in version 1.2 (unreleased) +Noteworthy changes in version 1.2 (2006-03-03) ---------------------------------------------- * New function gpg_err_init, which binds the locale directory to @@ -25,6 +25,7 @@ gpg_err_init NEW GPG_ERR_INITIALIZED NEW ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + Noteworthy changes in version 1.1 (2005-06-20) ---------------------------------------------- diff --git a/configure.ac b/configure.ac index 291fce1..3c52afe 100644 --- a/configure.ac +++ b/configure.ac @@ -23,16 +23,16 @@ AC_PREREQ(2.59) min_automake_version="1.9.3" # The gettext version is set below using AM_GNU_GETTEXT_VERSION # Version number: Remember to change it immediately *after* a release. -AC_INIT([libgpg-error],[1.2-cvs],[[email protected]]) +AC_INIT([libgpg-error],[1.2],[[email protected]]) # LT Version numbers, remember to change them just *before* a release. # (Code changed: REVISION++) # (Interfaces added/removed/changed: CURRENT++, REVISION=0) # (Interfaces added: AGE++) # (Interfaces removed: AGE=0) -# Note, that added error codes don't constitute an interface change. -LIBGPG_ERROR_LT_CURRENT=1 -LIBGPG_ERROR_LT_AGE=1 -LIBGPG_ERROR_LT_REVISION=4 +# Note that added error codes don't constitute an interface change. +LIBGPG_ERROR_LT_CURRENT=2 +LIBGPG_ERROR_LT_AGE=2 +LIBGPG_ERROR_LT_REVISION=0 AC_SUBST(LIBGPG_ERROR_LT_CURRENT) AC_SUBST(LIBGPG_ERROR_LT_AGE) AC_SUBST(LIBGPG_ERROR_LT_REVISION) |