From ad32436b9ae2becdd97a78ce1ed2f5fff130b553 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Thu, 19 Oct 2023 12:46:37 +0200 Subject: [PATCH] v2.0.25 --- ChangeLog | 2 ++ configure.ac | 2 +- mod_http2/h2_version.h | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0c3bc9c8..6def249d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +v2.0.25 +-------------------------------------------------------------------------------- * Fixed a bug that prevented immediate memory release of reset streams on rare occasions. Memory was reclaimed instead at connection close. This could be exploited, unless nghttp2 v1.57.0 is used, in a variation diff --git a/configure.ac b/configure.ac index 8158815b..9deac6b7 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ # AC_PREREQ([2.69]) -AC_INIT([mod_http2], [2.0.24], [stefan@eissing.org]) +AC_INIT([mod_http2], [2.0.25], [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 518059b4..c813e717 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.24-git" +#define MOD_HTTP2_VERSION "2.0.25-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 0x020018 +#define MOD_HTTP2_VERSION_NUM 0x020019 #endif /* mod_h2_h2_version_h */