diff options
-rw-r--r-- | NEWS | 7 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 8 insertions, 3 deletions
@@ -1,4 +1,4 @@ -Noteworthy changes in version 1.49 (unreleased) [C35/A35/R_] +Noteworthy changes in version 1.49 (2024-04-25) [C36/A36/R0] ----------------------------------------------- * Two new functions to improve the logging interface. The @@ -7,6 +7,11 @@ Noteworthy changes in version 1.49 (unreleased) [C35/A35/R_] select log output by domain. It also provide a non yet functional feature to include a hex dump. + * Add a "trunc" keyword to gpgrt_log_printhex. [rE0a39fbefcb] + + * Avoid an endless loop in the argparser due to a conf file read + error. [rE2dc93cfecc] + * Interface changes relative to the 1.48 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gpgrt_add_post_log_func NEW. diff --git a/configure.ac b/configure.ac index c436c5b..a24453e 100644 --- a/configure.ac +++ b/configure.ac @@ -49,8 +49,8 @@ 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=35 -LIBGPG_ERROR_LT_AGE=35 +LIBGPG_ERROR_LT_CURRENT=36 +LIBGPG_ERROR_LT_AGE=36 LIBGPG_ERROR_LT_REVISION=0 ################################################ |