Release 1.15.0

* configure.ac: Bump LT versions to c=C35/A24/R0, cpp=C18/A13/R0,
qt=C12/A5/R0.
--

GnuPG-bug-id: 5131
This commit is contained in:
Werner Koch 2020-11-12 10:24:22 +01:00
parent 3382ecb17e
commit feea38c89d
No known key found for this signature in database
GPG Key ID: E3FDFF218E45B72B
4 changed files with 18 additions and 13 deletions

8
NEWS
View File

@ -1,4 +1,4 @@
Noteworthy changes in version 1.15.0 (unreleased) Noteworthy changes in version 1.15.0 (2020-11-12)
------------------------------------------------- -------------------------------------------------
* New function gpgme_op_setexpire to make changing the expiration * New function gpgme_op_setexpire to make changing the expiration
@ -7,6 +7,8 @@ Noteworthy changes in version 1.15.0 (unreleased)
* New function gpgme_op_revsig to revoke key signatures (requires * New function gpgme_op_revsig to revoke key signatures (requires
GnuPG 2.2.24). [#5094] GnuPG 2.2.24). [#5094]
* Support exporting secret keys. [#5046]
* cpp: Support for set expire operations in the C++ bindings. [#5003] * cpp: Support for set expire operations in the C++ bindings. [#5003]
* cpp: Support for revoking key signatures in the C++ bindings. [#5094] * cpp: Support for revoking key signatures in the C++ bindings. [#5094]
@ -43,6 +45,10 @@ Noteworthy changes in version 1.15.0 (unreleased)
qt: QuickJob::result CHANGED: Made params 'auditLogAsHtml' qt: QuickJob::result CHANGED: Made params 'auditLogAsHtml'
and 'auditLogError' optional. and 'auditLogError' optional.
[c=C35/A24/R0 cpp=C18/A12/R0 qt=C12/A5/R0]
Release-info: https://dev.gnupg.org/T5131
Noteworthy changes in version 1.14.0 (2020-07-16) Noteworthy changes in version 1.14.0 (2020-07-16)
------------------------------------------------- -------------------------------------------------

2
README
View File

@ -1,7 +1,7 @@
GPGME - GnuPG Made Easy GPGME - GnuPG Made Easy
--------------------------- ---------------------------
Copyright 2001-2018 g10 Code GmbH Copyright 2001-2020 g10 Code GmbH
This file is free software; as a special exception the author gives This file is free software; as a special exception the author gives
unlimited permission to copy and/or distribute it, with or without unlimited permission to copy and/or distribute it, with or without

View File

@ -31,8 +31,8 @@ min_automake_version="1.14"
# for the LT versions. # for the LT versions.
m4_define([mym4_package],[gpgme]) m4_define([mym4_package],[gpgme])
m4_define([mym4_major], [1]) m4_define([mym4_major], [1])
m4_define([mym4_minor], [14]) m4_define([mym4_minor], [15])
m4_define([mym4_micro], [1]) m4_define([mym4_micro], [0])
# Below is m4 magic to extract and compute the git revision number, # Below is m4 magic to extract and compute the git revision number,
# the decimalized short revision number, a beta version string and a # the decimalized short revision number, a beta version string and a
@ -53,19 +53,19 @@ AC_INIT([mym4_package],[mym4_version], [https://bugs.gnupg.org])
# (Interfaces added: AGE++) # (Interfaces added: AGE++)
# (Interfaces removed: AGE=0) # (Interfaces removed: AGE=0)
# #
LIBGPGME_LT_CURRENT=34 LIBGPGME_LT_CURRENT=35
LIBGPGME_LT_AGE=23 LIBGPGME_LT_AGE=24
LIBGPGME_LT_REVISION=0 LIBGPGME_LT_REVISION=0
# If there is an ABI break in gpgmepp or qgpgme also bump the # If there is an ABI break in gpgmepp or qgpgme also bump the
# version in IMPORTED_LOCATION in the GpgmeppConfig-w32.cmake.in.in # version in IMPORTED_LOCATION in the GpgmeppConfig-w32.cmake.in.in
LIBGPGMEPP_LT_CURRENT=17 LIBGPGMEPP_LT_CURRENT=18
LIBGPGMEPP_LT_AGE=11 LIBGPGMEPP_LT_AGE=12
LIBGPGMEPP_LT_REVISION=0 LIBGPGMEPP_LT_REVISION=0
LIBQGPGME_LT_CURRENT=11 LIBQGPGME_LT_CURRENT=12
LIBQGPGME_LT_AGE=4 LIBQGPGME_LT_AGE=5
LIBQGPGME_LT_REVISION=0 LIBQGPGME_LT_REVISION=0
################################################ ################################################
@ -824,7 +824,7 @@ AH_BOTTOM([
#define GPG_ERR_ENABLE_ERRNO_MACROS 1 #define GPG_ERR_ENABLE_ERRNO_MACROS 1
#define CRIGHTBLURB "Copyright (C) 2000 Werner Koch\n" \ #define CRIGHTBLURB "Copyright (C) 2000 Werner Koch\n" \
"Copyright (C) 2001--2018 g10 Code GmbH\n" "Copyright (C) 2001--2020 g10 Code GmbH\n"
]) ])

View File

@ -39,7 +39,7 @@ BEGIN
VALUE "FileDescription", "GPGME - GnuPG Made Easy\0" VALUE "FileDescription", "GPGME - GnuPG Made Easy\0"
VALUE "FileVersion", "@LIBGPGME_LT_CURRENT@.@LIBGPGME_LT_AGE@.@LIBGPGME_LT_REVISION@.@BUILD_REVISION@\0" VALUE "FileVersion", "@LIBGPGME_LT_CURRENT@.@LIBGPGME_LT_AGE@.@LIBGPGME_LT_REVISION@.@BUILD_REVISION@\0"
VALUE "InternalName", "gpgme\0" VALUE "InternalName", "gpgme\0"
VALUE "LegalCopyright", "Copyright © 2001-2018 g10 Code GmbH\0" VALUE "LegalCopyright", "Copyright © 2001-2020 g10 Code GmbH\0"
VALUE "LegalTrademarks", "\0" VALUE "LegalTrademarks", "\0"
VALUE "OriginalFilename", "gpgme.dll\0" VALUE "OriginalFilename", "gpgme.dll\0"
VALUE "PrivateBuild", "\0" VALUE "PrivateBuild", "\0"
@ -49,4 +49,3 @@ BEGIN
END END
END END
END END