Skip to content

Commit

Permalink
Released GNU libmicrohttpd 0.9.75
Browse files Browse the repository at this point in the history
  • Loading branch information
Karlson2k committed Dec 26, 2021
1 parent 1c381f4 commit 940041a
Show file tree
Hide file tree
Showing 5 changed files with 182 additions and 152 deletions.
5 changes: 4 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Sun 26 Dec 2021 20:30:00 MSK
Releasing GNU libmicrohttpd 0.9.75 -EG

December 2021
Fixed Makefile warning on MinGW.
Fixed compiler warning on MinGW.
Expand All @@ -12,7 +15,7 @@ December 2021
Added more checks in test_large_put, increased timeout (was too small for
this test). -EG

Web 19 Dec 2021 18:30:00 MSK
Sun 19 Dec 2021 18:30:00 MSK
Releasing GNU libmicrohttpd 0.9.74 -EG

December 2021
Expand Down
19 changes: 18 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,4 +1,21 @@
Web 19 Dec 2021 18:30:00 MSK
Sun 26 Dec 2021 20:30:00 MSK
Released GNU libmicrohttpd 0.9.75 -EG

This is a correction release.
The main improvement is the implementation of workaround for some
OSes (like OpenBSD 7) where "monotonic" clock may jump back. Now
MHD is able to automatically detect such situation and recover if
the jump is small. This workaround is needed with increased
accuracy of connection timeout introduced in previous version, as
with lower accuracy (v0.9.73 and before) these jumpbacks were
unnoticeable.
Other changes: fixed some compiler, Makefile, and configure
warnings on specific platforms; one test further improved.

-- Evgeny Grin (Karlson2k)


Sun 19 Dec 2021 18:30:00 MSK
Released GNU libmicrohttpd 0.9.74

This release brings a lot of fixes and improvements, and
Expand Down
6 changes: 3 additions & 3 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@
#
AC_PREREQ([2.64])
LT_PREREQ([2.4.0])
AC_INIT([GNU Libmicrohttpd],[0.9.74],[libmicrohttpd@gnu.org])
AC_INIT([GNU Libmicrohttpd],[0.9.75],[libmicrohttpd@gnu.org])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([silent-rules] [subdir-objects])
AC_CONFIG_HEADERS([MHD_config.h])
AC_CONFIG_MACRO_DIR([m4])

LIB_VERSION_CURRENT=71
LIB_VERSION_CURRENT=72
LIB_VERSION_REVISION=0
LIB_VERSION_AGE=59
LIB_VERSION_AGE=60
AC_SUBST(LIB_VERSION_CURRENT)
AC_SUBST(LIB_VERSION_REVISION)
AC_SUBST(LIB_VERSION_AGE)
Expand Down

0 comments on commit 940041a

Please sign in to comment.