Skip to content

Commit 940041a

Browse files
committed
Released GNU libmicrohttpd 0.9.75
1 parent 1c381f4 commit 940041a

5 files changed

Lines changed: 182 additions & 152 deletions

File tree

ChangeLog

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
Sun 26 Dec 2021 20:30:00 MSK
2+
Releasing GNU libmicrohttpd 0.9.75 -EG
3+
14
December 2021
25
Fixed Makefile warning on MinGW.
36
Fixed compiler warning on MinGW.
@@ -12,7 +15,7 @@ December 2021
1215
Added more checks in test_large_put, increased timeout (was too small for
1316
this test). -EG
1417

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

1821
December 2021

NEWS

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,21 @@
1-
Web 19 Dec 2021 18:30:00 MSK
1+
Sun 26 Dec 2021 20:30:00 MSK
2+
Released GNU libmicrohttpd 0.9.75 -EG
3+
4+
This is a correction release.
5+
The main improvement is the implementation of workaround for some
6+
OSes (like OpenBSD 7) where "monotonic" clock may jump back. Now
7+
MHD is able to automatically detect such situation and recover if
8+
the jump is small. This workaround is needed with increased
9+
accuracy of connection timeout introduced in previous version, as
10+
with lower accuracy (v0.9.73 and before) these jumpbacks were
11+
unnoticeable.
12+
Other changes: fixed some compiler, Makefile, and configure
13+
warnings on specific platforms; one test further improved.
14+
15+
-- Evgeny Grin (Karlson2k)
16+
17+
18+
Sun 19 Dec 2021 18:30:00 MSK
219
Released GNU libmicrohttpd 0.9.74
320

421
This release brings a lot of fixes and improvements, and

configure.ac

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@
2323
#
2424
AC_PREREQ([2.64])
2525
LT_PREREQ([2.4.0])
26-
AC_INIT([GNU Libmicrohttpd],[0.9.74],[libmicrohttpd@gnu.org])
26+
AC_INIT([GNU Libmicrohttpd],[0.9.75],[libmicrohttpd@gnu.org])
2727
AC_CONFIG_AUX_DIR([build-aux])
2828
AM_INIT_AUTOMAKE([silent-rules] [subdir-objects])
2929
AC_CONFIG_HEADERS([MHD_config.h])
3030
AC_CONFIG_MACRO_DIR([m4])
3131

32-
LIB_VERSION_CURRENT=71
32+
LIB_VERSION_CURRENT=72
3333
LIB_VERSION_REVISION=0
34-
LIB_VERSION_AGE=59
34+
LIB_VERSION_AGE=60
3535
AC_SUBST(LIB_VERSION_CURRENT)
3636
AC_SUBST(LIB_VERSION_REVISION)
3737
AC_SUBST(LIB_VERSION_AGE)

0 commit comments

Comments
 (0)