From 5889279f8062d0428926971a3eed1d8ac7bb8380 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Wed, 17 Jan 2024 09:19:44 +0100 Subject: [PATCH] v2.0.26 --- ChangeLog | 4 ++++ configure.ac | 2 +- mod_http2/h2_version.h | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 529d3625..d0080c68 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,8 @@ +v2.0.25 +-------------------------------------------------------------------------------- * Fixed `Date` header on requests upgraded from HTTP/1.1 (h2c). Fixes #272. + * Fixed small memory leak in h2 header bucket free. Thanks to + Michael Kaufmann for finding this and providing the fix. v2.0.25 -------------------------------------------------------------------------------- diff --git a/configure.ac b/configure.ac index 9deac6b7..0c2685b4 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ # AC_PREREQ([2.69]) -AC_INIT([mod_http2], [2.0.25], [stefan@eissing.org]) +AC_INIT([mod_http2], [2.0.26], [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 c813e717..a1dcbfe6 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.25-git" +#define MOD_HTTP2_VERSION "2.0.26-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 0x020019 +#define MOD_HTTP2_VERSION_NUM 0x02001a #endif /* mod_h2_h2_version_h */