diff options
-rw-r--r-- | NEWS | 24 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 19 insertions, 7 deletions
@@ -1,10 +1,6 @@ -Noteworthy changes in version 3.0.0 (unreleased) [C_/A_/R_] +Noteworthy changes in version 3.0.0 (2024-06-18) [C9/A0/R0] ------------------------------------------------ - * New function assuan_control. [T6625] - - * New function assuan_sock_accept. [T5925] - * API change: For new code, which uses libassuan with nPTH, please use gpgrt_get_syscall_clamp and assuan_control, instead of the system_hooks API. Use of ASSUAN_SYSTEM_NPTH is deprecated with new @@ -16,6 +12,10 @@ Noteworthy changes in version 3.0.0 (unreleased) [C_/A_/R_] (NEED_LIBASSUAN_API=2 in its configure.ac), use of ASSUAN_SYSTEM_NPTH is still supported. [T5914] + * New function assuan_control. [T6625] + + * New function assuan_sock_accept. [T5925] + * New functions assuan_pipe_wait_server_termination and assuan_pipe_kill_server to support abstraction of process. [T6487] @@ -25,11 +25,23 @@ Noteworthy changes in version 3.0.0 (unreleased) [C_/A_/R_] * No support for WindowsCE, any more. [T6170] - * Interface changes relative to the 3.0.0 release: + * New socket flags "linger" and "reuseaddr". [rA87f92fe962] + + * Interface changes relative to the 2.5.0 release: ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ assuan_sock_accept NEW. assuan_pipe_wait_server_termination NEW. assuan_pipe_kill_server NEW. + assuan_sock_set_flag EXTENDED. + assuan_sock_get_flag EXTENDED. + + Release-info: https://dev.gnupg.org/T7163 + + +Release dates of 2.5 versions +------------------------------ + + Version 2.5.7 (2024-03-06) [C8/A8/R7] https://dev.gnupg.org/T7028 Noteworthy changes in version 2.5.6 (2023-06-19) [C8/A8/R6] diff --git a/configure.ac b/configure.ac index 2ab95dc..6c291cd 100644 --- a/configure.ac +++ b/configure.ac @@ -62,7 +62,7 @@ AC_INIT([mym4_package],[mym4_version],[https://bugs.gnupg.org]) # (Interfaces removed/changed: AGE=0) # LIBASSUAN_LT_CURRENT=9 -LIBASSUAN_LT_AGE=9 +LIBASSUAN_LT_AGE=0 LIBASSUAN_LT_REVISION=0 # If the API is changed in an incompatible way: increment the next counter. |