From 08e67b889a73c7505232d042372bc441798f9b71 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Wed, 21 Sep 2022 15:11:06 +0200 Subject: [PATCH] v2.0.5 --- ChangeLog | 7 +++++++ configure.ac | 2 +- mod_http2/h2_version.h | 4 ++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index fc30b63a..21ac2590 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +v2.0.5 +-------------------------------------------------------------------------------- + * Synchronized changes from Apache trunk development. Improvements in pollset + handling and simplification of response data passing to main connection. + * Improvements in shutdown scenarios that wake up a potentially sleeping + pollset that might block a clean child exit. + v2.0.4 -------------------------------------------------------------------------------- * new directive `H2HeaderStrictness (highest|rfc7540|rfc9113)` to configure diff --git a/configure.ac b/configure.ac index 117bab74..57aac8a3 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ # AC_PREREQ([2.69]) -AC_INIT([mod_http2], [2.0.4], [stefan@eissing.org]) +AC_INIT([mod_http2], [2.0.5], [stefan@eissing.org]) LT_PREREQ([2.2.6]) LT_INIT() diff --git a/mod_http2/h2_version.h b/mod_http2/h2_version.h index 19b98cb3..81a07da5 100644 --- a/mod_http2/h2_version.h +++ b/mod_http2/h2_version.h @@ -27,7 +27,7 @@ * @macro * Version number of the http2 module as c string */ -#define MOD_HTTP2_VERSION "2.0.4-git" +#define MOD_HTTP2_VERSION "2.0.5-git" /** * @macro @@ -35,7 +35,7 @@ * release. This is a 24 bit number with 8 bits for major number, 8 bits * for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203. */ -#define MOD_HTTP2_VERSION_NUM 0x020004 +#define MOD_HTTP2_VERSION_NUM 0x020005 #endif /* mod_h2_h2_version_h */