diff options
author | Werner Koch <[email protected]> | 2024-11-11 10:32:11 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2024-11-11 10:33:20 +0000 |
commit | b0bb9266010d84b30fa2dc6a2127b7e40dc03660 (patch) | |
tree | 4dec32787034f1f86ca34f037bac80ce7a40fcb5 | |
parent | Avoid use of 'nullptr' for an identifier. (diff) | |
download | libgpg-error-b0bb9266010d84b30fa2dc6a2127b7e40dc03660.tar.gz libgpg-error-b0bb9266010d84b30fa2dc6a2127b7e40dc03660.zip |
Release 1.51libgpg-error-1.51gpgrt-1.51
-rw-r--r-- | NEWS | 23 | ||||
-rw-r--r-- | configure.ac | 4 |
2 files changed, 24 insertions, 3 deletions
@@ -1,6 +1,27 @@ -Noteworthy changes in version 1.51 (unreleased) [C37/A37/R_] +Noteworthy changes in version 1.51 (2024-11-11) [C38/A38/R0] ----------------------------------------------- + * Allow initialization of new Windows threads to utf8 mode. [T7185] + + * Add GPGRT_PROCESS_ALLOW_SET_FG for gpgrt_process_spawn. + [rEb79d4206f4] + + * Add new spawn function to modify the environment. [T7307] + + * Fix missing environ var for macOS and others. [T7169,T7307] + + * Fix forgotten _gpgrt_post_syscall on create pipe failure. [rEbcab96484d] + + * Let gpgrt_poll return an error for a closed fd. [rE4a3dc85f69] + + * Fix build error introduced by C-committee stupidity. [T7344] + + * Interface changes relative to the 1.50 release: + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + _gpg_w32_gettext_use_utf8 EXTN (new value 2). + gpgrt_spawn_actions_set_env_rev NEW. + GPGRT_PROCESS_ALLOW_SET_FG NEW. + Release-info: https://dev.gnupg.org/T7164 diff --git a/configure.ac b/configure.ac index c4a9213..4de263a 100644 --- a/configure.ac +++ b/configure.ac @@ -51,8 +51,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=37 -LIBGPG_ERROR_LT_AGE=37 +LIBGPG_ERROR_LT_CURRENT=38 +LIBGPG_ERROR_LT_AGE=38 LIBGPG_ERROR_LT_REVISION=0 ################################################ |