diff options
-rw-r--r-- | NEWS | 11 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 12 insertions, 5 deletions
@@ -1,8 +1,15 @@ -Noteworthy changes in version 1.42 (unreleased) [C31/A31/R2] +Noteworthy changes in version 1.42 (2021-03-22) [C32/A32/R0] ----------------------------------------------- + * Allow Unicode file names under Windows for the gettext domain. - * Interface changes relative to the 1.39 release: + * Improve cross-compiling support. [#5289] + + * Improve $libdir determination by gpgrt-config. [#5293] + + * Support --disable-thread by gen-lock-obj.sh. [#5296] + + * Interface changes relative to the 1.40 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ GPG_ERR_SOURCE_TPM2D NEW. diff --git a/configure.ac b/configure.ac index 7ec21b6..c0aab53 100644 --- a/configure.ac +++ b/configure.ac @@ -49,9 +49,9 @@ AC_INIT([mym4_package],[mym4_version],[https://bugs.gnupg.org]) # (Interfaces added: AGE++) # (Interfaces removed: AGE=0) # Note that added error codes don't constitute an interface change. -LIBGPG_ERROR_LT_CURRENT=31 -LIBGPG_ERROR_LT_AGE=31 -LIBGPG_ERROR_LT_REVISION=1 +LIBGPG_ERROR_LT_CURRENT=32 +LIBGPG_ERROR_LT_AGE=32 +LIBGPG_ERROR_LT_REVISION=0 ################################################ AC_SUBST(LIBGPG_ERROR_LT_CURRENT) |