File tree 3 files changed +7
-2
lines changed
3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change
1
+ # 0.3.11 (January 26, 2022)
2
+
3
+ * Make ` SendStream::poll_capacity ` never return ` Ok(Some(0)) ` (#596 )
4
+ * Fix panic when receiving already reset push promise (#597 )
5
+
1
6
# 0.3.10 (January 6, 2022)
2
7
3
8
* Add ` Error::is_go_away() ` and ` Error::is_remote() ` methods.
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ name = "h2"
5
5
# - html_root_url.
6
6
# - Update CHANGELOG.md.
7
7
# - Create git tag
8
- version = " 0.3.10 "
8
+ version = " 0.3.11 "
9
9
license = " MIT"
10
10
authors = [
11
11
" Carl Lerche <[email protected] >" ,
Original file line number Diff line number Diff line change 78
78
//! [`server::handshake`]: server/fn.handshake.html
79
79
//! [`client::handshake`]: client/fn.handshake.html
80
80
81
- #![ doc( html_root_url = "https://docs.rs/h2/0.3.10 " ) ]
81
+ #![ doc( html_root_url = "https://docs.rs/h2/0.3.11 " ) ]
82
82
#![ deny( missing_debug_implementations, missing_docs) ]
83
83
#![ cfg_attr( test, deny( warnings) ) ]
84
84
You can’t perform that action at this time.
0 commit comments