summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2026-05-18 11:15:20 +0200
committerWerner Koch <[email protected]>2026-05-18 11:15:20 +0200
commit5bc31cad011192ef5d06304a28f3b8bf1382081c (patch)
treed9ee46382f72abd7071f41313aa44dcfad4ffa38
parentio:w32:spawn_sans_helper: Fix inherit of HANDLES to child process. (diff)
downloadgpgme-2.1.0.tar.gz
gpgme-2.1.0.zip
Release 2.1.0gpgme-2.1.0
-rw-r--r--NEWS25
-rw-r--r--configure.ac10
2 files changed, 26 insertions, 9 deletions
diff --git a/NEWS b/NEWS
index 5064333a..1ffa021f 100644
--- a/NEWS
+++ b/NEWS
@@ -1,4 +1,4 @@
-Noteworthy changes in version 2.1.0 (unreleased) [C45/A0/R)]
+Noteworthy changes in version 2.1.0 (2026-05-18) [C46/A1/R0]
------------------------------------------------
* New flags "is_de_vs" and "beta_compliance" for encryption results.
@@ -8,18 +8,35 @@ Noteworthy changes in version 2.1.0 (unreleased) [C45/A0/R)]
session_hash in gpgme_decrypt_result_t. For details see the gpg
option --show-session-key. [rM63f18298d3]
+ * Setting of attributes for CMS signatures is now supported via
+ gpgme_sig_notation_add. [rM8081d34e5f]
+
* New context flag "export-filter". [T8033]
* Extend the internal gpgsm_assuan_simple_command to consume all
received lines. This fixes a possible lockup introduced by the
fix for T7759. [T8187]
+ * Fix passphrase cancel handling. [T8172]
+
+ * Fix a regression wrt the auto-key-locate option. [rMd242561dae]
+
+ * Handle the case when pinentry is invoked multiple times. [T7339]
+
+ * Don't cap ISO dates beyond year 2037 on Windows. [T8088]
+
+ * Treat empty DISPLAY envvar as unset. [T7919]
+
* Interface changes relative to the 2.0.0 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
gpgme_set_ctx_flag EXT: New flag "export-filter".
- gpgme_decrypt_result_t EXT: New fields is_de_vs,
- beta_compliance, and session_hash.
- GPGME_DECRYPT_SESSION_HASH NEW.
+ gpgme_decrypt_result_t EXT: New fields "is_de_vs",
+
+ "beta_compliance", "session_hash".
+ gpgme_sig_notation_t EXT: New field "unprotected".
+ GPGME_DECRYPT_SESSION_HASH NEW.
+ GPGME_SIG_NOTATION_UNPROTECTED NEW.
+
Release-info: https://dev.gnupg.org/T8237
diff --git a/configure.ac b/configure.ac
index 9f97fe6e..a01a8c1d 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], [0])
-m4_define([mym4_micro], [2])
+m4_define([mym4_minor], [1])
+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=45
-LIBGPGME_LT_AGE=0
-LIBGPGME_LT_REVISION=1
+LIBGPGME_LT_CURRENT=46
+LIBGPGME_LT_AGE=1
+LIBGPGME_LT_REVISION=0
################################################
AC_SUBST(LIBGPGME_LT_CURRENT)