Skip to content

Commit 0800e0e

Browse files
committed
v2.0.29
1 parent 7585085 commit 0800e0e

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ config.h
1818
config.h.in
1919
config.h.in~
2020
configure
21+
configure~
2122
configure.scan
2223
depcomp
2324
install-sh

ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v2.0.29
2+
--------------------------------------------------------------------------------
3+
* fixed a compiler warning about an unused static var when AP_MPMQ_CAN_WAITIO
4+
is not defined.
5+
16
v2.0.28
27
--------------------------------------------------------------------------------
38
* When HTTP/2 flow controls blocks further writes, return processing to an

configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
#
1313

1414
AC_PREREQ([2.69])
15-
AC_INIT([mod_http2], [2.0.28], [[email protected]])
15+
AC_INIT([mod_http2], [2.0.29], [[email protected]])
1616

1717
LT_PREREQ([2.2.6])
1818
LT_INIT()

mod_http2/h2_version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
* @macro
2828
* Version number of the http2 module as c string
2929
*/
30-
#define MOD_HTTP2_VERSION "2.0.28-git"
30+
#define MOD_HTTP2_VERSION "2.0.29-git"
3131

3232
/**
3333
* @macro
3434
* Numerical representation of the version number of the http2 module
3535
* release. This is a 24 bit number with 8 bits for major number, 8 bits
3636
* for minor and 8 bits for patch. Version 1.2.3 becomes 0x010203.
3737
*/
38-
#define MOD_HTTP2_VERSION_NUM 0x02001c
38+
#define MOD_HTTP2_VERSION_NUM 0x02001d
3939

4040

4141
#endif /* mod_h2_h2_version_h */

0 commit comments

Comments
 (0)