Skip to content

Commit

Permalink
update to v2.0.27
Browse files Browse the repository at this point in the history
  • Loading branch information
icing committed Apr 3, 2024
1 parent 38da3a4 commit 9f94cfc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#

AC_PREREQ([2.69])
AC_INIT([mod_http2], [2.0.26], [[email protected]])
AC_INIT([mod_http2], [2.0.27], [[email protected]])

LT_PREREQ([2.2.6])
LT_INIT()
Expand Down
4 changes: 2 additions & 2 deletions mod_http2/h2_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
* @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
* Numerical representation of the version number of the http2 module
* 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 */

0 comments on commit 9f94cfc

Please sign in to comment.