diff options
| -rw-r--r-- | NEWS | 10 | ||||
| -rw-r--r-- | configure.ac | 10 |
2 files changed, 14 insertions, 6 deletions
@@ -1,14 +1,22 @@ -Noteworthy changes in version 2.1.3 (unreleased) [C46/A1/R_] +Noteworthy changes in version 2.2.0 (2026-08-31) [C47/A2/R0] ------------------------------------------------ * gpgme_verify_result_t now provides issuer serial number and issuer name for S/MIME certificates used for signing that are not included in a signature. [T8369] + * Handle the new SIGINFO status line. [T8368] + + * Ignore TRUST_ status lines if no NEWSIG was seen. [T8333] + * Interface changes relative to the 2.1.2 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gpgme_signature_t EXT: New fields "issuer_serial", "issuer_name". + GPGME_STATUS_SIGINFO NEW: Note that the use of stati codes + is deprecated. Please switch to + gpgme_op_interact. + Release-info: https://dev.gnupg.org/T8311 diff --git a/configure.ac b/configure.ac index 7721943e..ee56d99a 100644 --- a/configure.ac +++ b/configure.ac @@ -31,8 +31,8 @@ min_automake_version="1.14" # for the LT versions. m4_define([mym4_package],[gpgme]) m4_define([mym4_major], [2]) -m4_define([mym4_minor], [1]) -m4_define([mym4_micro], [3]) +m4_define([mym4_minor], [2]) +m4_define([mym4_micro], [0]) # Below is m4 magic to extract and compute the git revision number, # the decimalized short revision number, a beta version string and a @@ -55,9 +55,9 @@ AC_INIT([mym4_package],[mym4_version],[https://bugs.gnupg.org]) # (Interfaces added: AGE++) # (Interfaces removed: AGE=0) # -LIBGPGME_LT_CURRENT=46 -LIBGPGME_LT_AGE=1 -LIBGPGME_LT_REVISION=2 +LIBGPGME_LT_CURRENT=47 +LIBGPGME_LT_AGE=2 +LIBGPGME_LT_REVISION=0 ################################################ AC_SUBST(LIBGPGME_LT_CURRENT) |
