From b1273fb2037c65ba0b9bf38317597fe9e9b0e9d8 Mon Sep 17 00:00:00 2001 From: Stefan Eissing Date: Thu, 16 Feb 2023 12:46:30 +0100 Subject: [PATCH] v2.0.13 --- 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 e7e5a2c0..ae704dc2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,5 @@ +v2.0.13 +-------------------------------------------------------------------------------- * New directive 'H2MaxDataFrameLen n' to limit the maximum amount of response body bytes put into a single HTTP/2 DATA frame. Setting this to 0 places no limit (but the max size allowed by the protocol is observed). diff --git a/configure.ac b/configure.ac index 1b33664c..2b92a158 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ # AC_PREREQ([2.69]) -AC_INIT([mod_http2], [2.0.12], [stefan@eissing.org]) +AC_INIT([mod_http2], [2.0.13], [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 d41bcb85..e5286afe 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.12-git" +#define MOD_HTTP2_VERSION "2.0.13-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 0x02000c +#define MOD_HTTP2_VERSION_NUM 0x02000d #endif /* mod_h2_h2_version_h */