aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2023-07-07 11:33:25 +0000
committerWerner Koch <[email protected]>2023-07-07 11:35:14 +0000
commit5bf3e6d0754a179b316f90a885371af99bc03ea1 (patch)
treef7159fb24ae91db1eee5061017b8a8c07a3b933b
parentbuild: Add BUILT_SOURCE for better dependency. (diff)
downloadgpgme-1.21.0.tar.gz
gpgme-1.21.0.zip
Release 1.21.0gpgme-1.21.0
-rw-r--r--NEWS23
-rw-r--r--configure.ac14
2 files changed, 24 insertions, 13 deletions
diff --git a/NEWS b/NEWS
index 790e646a..68e08fe6 100644
--- a/NEWS
+++ b/NEWS
@@ -1,12 +1,16 @@
-Noteworthy changes in version 1.21.0 (unreleased)
+Noteworthy changes in version 1.21.0 (2023-07-07)
-------------------------------------------------
- * Extended gpgme_op_encrypt*, gpgme_op_encrypt_sign*, and
- gpgme_op_sign* to allow writing the output directly to a
- file. [T6530]
+ * Extended gpgme_op_encrypt, gpgme_op_encrypt_sign, and gpgme_op_sign
+ to allow writing the output directly to a file. [T6530]
+
+ * Extended gpgme_op_decrypt and gpgme_op_verify to allow reading the
+ input data directly from files. [T6530]
+
+ * For key signing and uid revoking allow an empty user id.
+ [rMfbc3963d62]
- * Extended gpgme_op_decrypt* and gpgme_op_verify* to allow
- reading the input data directly from files. [T6530]
+ * Pass an input-size-hint also to the gpgsm engine. [T6534]
* qt: Allow writing the created archives directly to a
file. [T6530]
@@ -21,6 +25,8 @@ Noteworthy changes in version 1.21.0 (unreleased)
* cpp: Error::isCanceled now also returns true for error code
GPG_ERR_FULLY_CANCELED. [T6510]
+ * python: Fix wrong use of write. [T6501]
+
* Interface changes relative to the 1.20.0 release:
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
cpp: Data::setFlag NEW.
@@ -53,6 +59,11 @@ Noteworthy changes in version 1.21.0 (unreleased)
qt: SignEncryptArchiveJob::setEncryptionFlags NEW.
qt: SignEncryptArchiveJob::encryptionFlags NEW.
+ [c=C41/A30/R0 cpp=C24/A18/R0 qt=C18/A3/R0]
+
+ Release-info: https://dev.gnupg.org/T6585
+
+
Noteworthy changes in version 1.20.0 (2023-04-20)
-------------------------------------------------
diff --git a/configure.ac b/configure.ac
index 1f91af3b..92cc8e92 100644
--- a/configure.ac
+++ b/configure.ac
@@ -53,20 +53,20 @@ AC_INIT([mym4_package],[mym4_version],[https://bugs.gnupg.org])
# (Interfaces added: AGE++)
# (Interfaces removed: AGE=0)
#
-LIBGPGME_LT_CURRENT=40
-LIBGPGME_LT_AGE=29
+LIBGPGME_LT_CURRENT=41
+LIBGPGME_LT_AGE=30
LIBGPGME_LT_REVISION=0
# If there is an ABI break in gpgmepp or qgpgme also bump the
# version in IMPORTED_LOCATION in the GpgmeppConfig-w32.cmake.in.in
-LIBGPGMEPP_LT_CURRENT=23
-LIBGPGMEPP_LT_AGE=17
+LIBGPGMEPP_LT_CURRENT=24
+LIBGPGMEPP_LT_AGE=18
LIBGPGMEPP_LT_REVISION=0
-LIBQGPGME_LT_CURRENT=17
-LIBQGPGME_LT_AGE=2
-LIBQGPGME_LT_REVISION=1
+LIBQGPGME_LT_CURRENT=18
+LIBQGPGME_LT_AGE=3
+LIBQGPGME_LT_REVISION=0
################################################
AC_SUBST(LIBGPGME_LT_CURRENT)