From 59d9f8106db3a23cb5d51d01dc6b719413d3f760 Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Mon, 24 Aug 2020 11:44:57 +0200 Subject: Release 1.39 --- NEWS | 18 +++++++++++++++--- configure.ac | 4 ++-- src/estream.c | 2 +- 3 files changed, 18 insertions(+), 6 deletions(-) diff --git a/NEWS b/NEWS index dcd316a..da632e1 100644 --- a/NEWS +++ b/NEWS @@ -1,14 +1,26 @@ -Noteworthy changes in version 1.39 (unreleased) [C29/A29/R1] +Noteworthy changes in version 1.39 (2020-08-24) [C30/A30/R0] ----------------------------------------------- - * On Windows gpgrt_fopen can now handle UTF-8 names. + * On Windows gpgrt_fopen, gpgrt_chdir, and gpgrt_mkdir now handle + UTF-8 names. [#4083] - * On Windows gpgrt_chdir and gpgrt_mkdir can now handle UTF-8 names. + * Make timeout of gpgrt_poll work correctly on Windows if no file + descriptors are active. + + * New function gpgrt_fcancel as alternative to gpgrt_close. This + function avoid flushing out buffered data and also tries to delete + a newly created file. + + * Changes to ease cross-building. [#4973] + + * "gpg-error --lib-version" works again. * Interface changes relative to the 1.38 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ gpgrt_fcancel NEW. + Release-info: https://dev.gnupg.org/T5031 + Noteworthy changes in version 1.38 (2020-05-29) [C29/A29/R0] ----------------------------------------------- diff --git a/configure.ac b/configure.ac index 80d24db..d9e5bf1 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=29 -LIBGPG_ERROR_LT_AGE=29 +LIBGPG_ERROR_LT_CURRENT=30 +LIBGPG_ERROR_LT_AGE=30 LIBGPG_ERROR_LT_REVISION=0 ################################################ diff --git a/src/estream.c b/src/estream.c index 0d37c1a..f75e052 100644 --- a/src/estream.c +++ b/src/estream.c @@ -3374,7 +3374,7 @@ _gpgrt_fopencookie (void *_GPGRT__RESTRICT cookie, estream_t stream; int err; es_syshd_t syshd; - struct cookie_io_functions_s io_functions = { functions, NULL, }; + struct cookie_io_functions_s io_functions = { functions, NULL }; stream = NULL; modeflags = 0; -- cgit v1.2.1