File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1+ # 0.2.7 (October 22, 2020)
2+
3+ * Fix stream ref count when sending a push promise
4+ * Fix receiving empty DATA frames in response to a HEAD request
5+ * Fix handling of client disabling SERVER_PUSH
6+
17# 0.2.6 (July 13, 2020)
28
39* Integrate ` tracing ` directly where ` log ` was used. (For 0.2.x, ` log ` s are still emitted by default.)
Original file line number Diff line number Diff line change @@ -5,14 +5,14 @@ name = "h2"
55# - html_root_url.
66# - Update CHANGELOG.md.
77# - Create git tag
8- version = " 0.2.6 "
8+ version = " 0.2.7 "
99license = " MIT"
1010authors = [
1111 " Carl Lerche <me@carllerche.com>" ,
1212 " Sean McArthur <sean@seanmonstar.com>" ,
1313]
1414description = " An HTTP/2.0 client and server"
15- documentation = " https://docs.rs/h2/0.2.6 /h2/"
15+ documentation = " https://docs.rs/h2/0.2.7 /h2/"
1616repository = " https://github.com/hyperium/h2"
1717readme = " README.md"
1818keywords = [" http" , " async" , " non-blocking" ]
Original file line number Diff line number Diff line change 7878//! [`server::handshake`]: server/fn.handshake.html
7979//! [`client::handshake`]: client/fn.handshake.html
8080
81- #![ doc( html_root_url = "https://docs.rs/h2/0.2.6 " ) ]
81+ #![ doc( html_root_url = "https://docs.rs/h2/0.2.7 " ) ]
8282#![ deny( missing_debug_implementations, missing_docs) ]
8383#![ cfg_attr( test, deny( warnings) ) ]
8484
You can’t perform that action at this time.
0 commit comments