diff options
author | Werner Koch <[email protected]> | 2024-11-06 10:38:59 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-11-06 10:38:59 +0000 |
commit | 98b10fbc63b323a146e66a2ea8f7ff8f216b31d7 (patch) | |
tree | 3bba199926851d2b6398a757dc0e91fd805ebfcb | |
parent | Include the full commit id. (diff) | |
download | gpgme-98b10fbc63b323a146e66a2ea8f7ff8f216b31d7.tar.gz gpgme-98b10fbc63b323a146e66a2ea8f7ff8f216b31d7.zip |
Release 1.24.0gpgme-1.24.0
-rw-r--r-- | AUTHORS | 2 | ||||
-rw-r--r-- | NEWS | 17 | ||||
-rw-r--r-- | README | 2 | ||||
-rw-r--r-- | configure.ac | 18 | ||||
-rw-r--r-- | src/versioninfo.rc.in | 2 |
5 files changed, 26 insertions, 15 deletions
@@ -22,7 +22,7 @@ List of Copyright holders Copyright (C) 1991-2013 Free Software Foundation, Inc. Copyright (C) 2000-2001 Werner Koch - Copyright (C) 2001-2023 g10 Code GmbH + Copyright (C) 2001-2024 g10 Code GmbH Copyright (C) 2002 Klarälvdalens Datakonsult AB Copyright (C) 2004-2008 Igor Belyi Copyright (C) 2002 John Goerzen @@ -1,4 +1,4 @@ -Noteworthy changes in version 1.24.0 (unrelease) +Noteworthy changes in version 1.24.0 (2024-11-06) ------------------------------------------------- * Extended gpgme_op_decrypt* and gpgme_op_verify* to allow writing the @@ -15,6 +15,8 @@ Noteworthy changes in version 1.24.0 (unrelease) * New context flag "known-notations". [T4060] + * New info flags "beta_compliance". [rM1a7bc88ee7] + * New function gpgme_op_setownertrust to make changing the owner trust easier and to allow enabling/disabling of keys (requires GnuPG 2.4.6). [T7239] @@ -55,11 +57,16 @@ Noteworthy changes in version 1.24.0 (unrelease) GPGME_SIG_MODE_FILE NEW. GPGME_ENCRYPT_ADD_RECP NEW. GPGME_ENCRYPT_CHG_RECP NEW. - gpgme_key_t EXTENDED: New field 'revkeys'. + gpgme_key_t EXT: New field 'revkeys'. gpgme_revocation_key_t NEW. - gpgme_set_ctx_flag EXTENDED: New flag 'import-options'. + gpgme_set_ctx_flag EXT: New flag 'import-options'. + gpgme_set_ctx_flag EXT: New flag 'proc-all-sigs'. + gpgme_set_ctx_flag EXT: New flag 'known-notation'. gpgme_op_setownertrust_start NEW. gpgme_op_setownertrust NEW. + gpgme_subkey_t EXT: New field 'beta_compliance'. + gpgme_signature_t EXT: New field 'beta_compliance'. + gpgme_decrypt_result_t EXT: New field 'beta_compliance'. cpp: Context::EncryptFile NEW. cpp: Context::setOwnerTrust NEW. cpp: Context::startSetOwnerTrust NEW. @@ -128,6 +135,10 @@ Noteworthy changes in version 1.24.0 (unrelease) qt: ImportJob::importOptions NEW. qt: QuickJob::startSetKeyEnabled NEW. + [c=C44/A33/R0 cpp=C27/A21/R0 qt=C21/A6/R0] + + Release-info: https://dev.gnupg.org/T7376 + Noteworthy changes in version 1.23.2 (2023-11-28) ------------------------------------------------- @@ -1,7 +1,7 @@ GPGME - GnuPG Made Easy --------------------------- -Copyright 2001-2023 g10 Code GmbH +Copyright 2001-2024 g10 Code GmbH This file is free software; as a special exception the author gives unlimited permission to copy and/or distribute it, with or without diff --git a/configure.ac b/configure.ac index 7a892de2..933fb150 100644 --- a/configure.ac +++ b/configure.ac @@ -55,20 +55,20 @@ AC_INIT([mym4_package],[mym4_version],[https://bugs.gnupg.org]) # (Interfaces added: AGE++) # (Interfaces removed: AGE=0) # -LIBGPGME_LT_CURRENT=43 -LIBGPGME_LT_AGE=32 -LIBGPGME_LT_REVISION=1 +LIBGPGME_LT_CURRENT=44 +LIBGPGME_LT_AGE=33 +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=26 -LIBGPGMEPP_LT_AGE=20 -LIBGPGMEPP_LT_REVISION=1 +LIBGPGMEPP_LT_CURRENT=27 +LIBGPGMEPP_LT_AGE=21 +LIBGPGMEPP_LT_REVISION=0 -LIBQGPGME_LT_CURRENT=20 -LIBQGPGME_LT_AGE=5 -LIBQGPGME_LT_REVISION=1 +LIBQGPGME_LT_CURRENT=21 +LIBQGPGME_LT_AGE=6 +LIBQGPGME_LT_REVISION=0 ################################################ AC_SUBST(LIBGPGME_LT_CURRENT) diff --git a/src/versioninfo.rc.in b/src/versioninfo.rc.in index 5f7ee453..6712ed04 100644 --- a/src/versioninfo.rc.in +++ b/src/versioninfo.rc.in @@ -39,7 +39,7 @@ BEGIN VALUE "FileDescription", "GPGME - GnuPG Made Easy\0" VALUE "FileVersion", "@LIBGPGME_LT_CURRENT@.@LIBGPGME_LT_AGE@.@LIBGPGME_LT_REVISION@.@BUILD_REVISION@\0" VALUE "InternalName", "gpgme\0" - VALUE "LegalCopyright", "Copyright � 2001-2023 g10 Code GmbH\0" + VALUE "LegalCopyright", "Copyright � 2001-2024 g10 Code GmbH\0" VALUE "LegalTrademarks", "\0" VALUE "OriginalFilename", "gpgme.dll\0" VALUE "PrivateBuild", "\0" |