diff --git a/ChangeLog b/ChangeLog index 5ae895e8..cf22dbb2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +v2.0.21 +-------------------------------------------------------------------------------- * The reporting of `Total Accesses` in the server-status page was fixed. It counted HTTP/2 requests twice. Test case added for this. Fixes PR 66801. * New directive `H2ProxyRequests on|off` to enable handling of HTTP/2 requests diff --git a/configure.ac b/configure.ac index 3f058752..a64d6846 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ # AC_PREREQ([2.69]) -AC_INIT([mod_http2], [2.0.20], [stefan@eissing.org]) +AC_INIT([mod_http2], [2.0.21], [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 59dc06c8..3287c573 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.20-git" +#define MOD_HTTP2_VERSION "2.0.21-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 0x020014 +#define MOD_HTTP2_VERSION_NUM 0x020015 #endif /* mod_h2_h2_version_h */