From 9f94cfce87f01315961bb68975c433deb5495c38 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Wed, 3 Apr 2024 15:34:57 +0200 Subject: [PATCH] update to v2.0.27 --- ChangeLog | 4 ++-- configure.ac | 2 +- mod_http2/h2_version.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index fe0b6580..592418fc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,10 +1,10 @@ -v2.0.26 +v2.0.27 -------------------------------------------------------------------------------- * Added `cmake` support provided by @jfclere. Many thanks. * Improved handling of excess request headers to lead to an early stream reset. -v2.0.25 +v2.0.26 -------------------------------------------------------------------------------- * Fixed `Date` header on requests upgraded from HTTP/1.1 (h2c). Fixes #272. * Fixed small memory leak in h2 header bucket free. Thanks to diff --git a/configure.ac b/configure.ac index 0c2685b4..547dd76f 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ # AC_PREREQ([2.69]) -AC_INIT([mod_http2], [2.0.26], [stefan@eissing.org]) +AC_INIT([mod_http2], [2.0.27], [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 a1dcbfe6..5296d048 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.26-git" +#define MOD_HTTP2_VERSION "2.0.27-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 0x02001a +#define MOD_HTTP2_VERSION_NUM 0x02001b #endif /* mod_h2_h2_version_h */