diff options
author | Werner Koch <[email protected]> | 2008-11-26 14:19:48 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-11-26 14:19:48 +0000 |
commit | 83fe11c5ccbbfc1f4ff275413a78d94dbbd9cad0 (patch) | |
tree | 4e7ef60ad5bdf35e8812110a5b3be658e762db9a | |
parent | Add codes GPG_ERR_NO_PIN and GPG_ERR_NO_PASSPHRASE. (diff) | |
download | libgpg-error-83fe11c5ccbbfc1f4ff275413a78d94dbbd9cad0.tar.gz libgpg-error-83fe11c5ccbbfc1f4ff275413a78d94dbbd9cad0.zip |
Preparing a release.libgpg-error-1.7
-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 @@ +2008-11-26 Werner Koch <[email protected]> + + Release 1.7. + + * configure.ac: Set LT version to C5/A5/R0. + 2008-11-12 Werner Koch <[email protected]> * src/err-codes.h.in: Add GPG_ERR_NO_PASSPHRASE and GPG_ERR_NO_PIN. @@ -1,6 +1,7 @@ -Noteworthy changes in version 1.7 +Noteworthy changes in version 1.7 (2008-11-26) ---------------------------------------------- + * Minor fixes and a few new error codes. * Interface changes relative to the 1.6 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ diff --git a/configure.ac b/configure.ac index c94f088..f3b5cb4 100644 --- a/configure.ac +++ b/configure.ac @@ -26,10 +26,10 @@ min_automake_version="1.9.6" # Set my_issvn to "yes" for non-released code. Remember to run an # "svn up" and "autogen.sh" right before creating a distribution. m4_define([my_version], [1.7]) -m4_define([my_issvn], [yes]) +m4_define([my_issvn], [no]) -m4_define([svn_revision], m4_esyscmd([echo -n $( (svn info 2>/dev/null \ - || echo 'Revision: 0')|sed -n '/^Revision:/ {s/[^0-9]//gp;q;}')])) +m4_define([svn_revision], m4_esyscmd([printf "%d" $(svn info 2>/dev/null \ + | sed -n '/^Revision:/ s/[^0-9]//gp'|head -1)])) AC_INIT([libgpg-error], [my_version[]m4_if(my_issvn,[yes],[-svn[]svn_revision])], @@ -39,8 +39,8 @@ AC_INIT([libgpg-error], # (Interfaces added: AGE++) # (Interfaces removed: AGE=0) # Note that added error codes don't constitute an interface change. -LIBGPG_ERROR_LT_CURRENT=4 -LIBGPG_ERROR_LT_AGE=4 +LIBGPG_ERROR_LT_CURRENT=5 +LIBGPG_ERROR_LT_AGE=5 LIBGPG_ERROR_LT_REVISION=0 AC_SUBST(LIBGPG_ERROR_LT_CURRENT) AC_SUBST(LIBGPG_ERROR_LT_AGE) |