Release 1.21.0

This commit is contained in:
Werner Koch 2023-07-07 13:33:25 +02:00
parent 05ac1ce09f
commit 5bf3e6d075
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B
2 changed files with 24 additions and 13 deletions

23
NEWS
View File

@ -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]
* 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]
* 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)
-------------------------------------------------

View File

@ -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)