diff options
author | Werner Koch <[email protected]> | 2015-06-08 12:58:44 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-06-08 13:03:18 +0000 |
commit | 052a9e3c5671d1ab69551f7b0abd0bbf859d4aba (patch) | |
tree | c51191cf5af74a7f923ffb24c3d5aba075b8a50c | |
parent | Fix regression with gpgsm 2.0 due to "OPTION with-secret". (diff) | |
download | gpgme-052a9e3c5671d1ab69551f7b0abd0bbf859d4aba.tar.gz gpgme-052a9e3c5671d1ab69551f7b0abd0bbf859d4aba.zip |
Release 1.5.5gpgme-1.5.5
-rw-r--r-- | AUTHORS | 2 | ||||
-rw-r--r-- | NEWS | 8 | ||||
-rw-r--r-- | configure.ac | 6 |
3 files changed, 11 insertions, 5 deletions
@@ -3,7 +3,7 @@ Homepage: http://www.gnupg.org/related_software/gpgme/ Download: ftp://ftp.gnupg.org/gcrypt/gpgme/ Repository: git://git.gnupg.org/gpgme.git Maintainer: Werner Koch <[email protected]> -Bug reports: http://bugs.gnupg.org (use category "gpgme") +Bug reports: https://bugs.gnupg.org (use category "gpgme") Security related bug reports: [email protected] License (software): LGPLv2.1+ License (manual+tools): GPLv3+ @@ -1,6 +1,12 @@ -Noteworthy changes in version 1.6.0 (unreleased) [C__/A__/R_] +Noteworthy changes in version 1.5.5 (2015-06-08) [C24/A13/R4] ------------------------------------------------ + * Fixed crash in key listings for user ids with a backslash. + + * Fixed regression for GPGSM use with GnuPG < 2.1. + + * Properly set signature summary for revoked OpenPGP keys. + Noteworthy changes in version 1.5.4 (2015-04-13) [C24/A13/R3] ------------------------------------------------ diff --git a/configure.ac b/configure.ac index 2f477195..7f03170e 100644 --- a/configure.ac +++ b/configure.ac @@ -28,8 +28,8 @@ min_automake_version="1.14" # commit and push so that the git magic is able to work. See below # for the LT versions. m4_define(mym4_version_major, [1]) -m4_define(mym4_version_minor, [6]) -m4_define(mym4_version_micro, [0]) +m4_define(mym4_version_minor, [5]) +m4_define(mym4_version_micro, [5]) # Below is m4 magic to extract and compute the revision number, the # decimalized short revision number, a beta version string, and a flag @@ -59,7 +59,7 @@ LIBGPGME_LT_CURRENT=24 # Subtract 2 from this value if you want to make the LFS transition an # ABI break. [Note to self: Remove this comment with the next regular break.] LIBGPGME_LT_AGE=13 -LIBGPGME_LT_REVISION=3 +LIBGPGME_LT_REVISION=4 # If the API is changed in an incompatible way: increment the next counter. GPGME_CONFIG_API_VERSION=1 |