Skip to content

Commit

Permalink
v2.0.29
Browse files Browse the repository at this point in the history
  • Loading branch information
icing committed Jul 10, 2024
1 parent 7585085 commit 0800e0e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ config.h
config.h.in
config.h.in~
configure
configure~
configure.scan
depcomp
install-sh
Expand Down
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v2.0.29
--------------------------------------------------------------------------------
* fixed a compiler warning about an unused static var when AP_MPMQ_CAN_WAITIO
is not defined.

v2.0.28
--------------------------------------------------------------------------------
* When HTTP/2 flow controls blocks further writes, return processing to an
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.28], [[email protected]])
AC_INIT([mod_http2], [2.0.29], [[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.28-git"
#define MOD_HTTP2_VERSION "2.0.29-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 0x02001c
#define MOD_HTTP2_VERSION_NUM 0x02001d


#endif /* mod_h2_h2_version_h */

0 comments on commit 0800e0e

Please sign in to comment.