Skip to content

Commit 9531129

Browse files
committed
v0.3.5
1 parent 508bcb1 commit 9531129

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.3.5 (September 29, 2021)
2+
3+
* Fix sending of very large headers. Previously when a single header was too big to fit in a single `HEADERS` frame, an error was returned. Now it is broken up and sent correctly.
4+
* Fix buffered data field to be a bigger integer size.
5+
* Refactor error format to include what initiated the error (remote, local, or user), if it was a stream or connection-level error, and any received debug data.
6+
17
# 0.3.4 (August 20, 2021)
28

39
* Fix panic when encoding header size update over a certain size.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@ name = "h2"
55
# - html_root_url.
66
# - Update CHANGELOG.md.
77
# - Create git tag
8-
version = "0.3.4"
8+
version = "0.3.5"
99
license = "MIT"
1010
authors = [
1111
"Carl Lerche <[email protected]>",
1212
"Sean McArthur <[email protected]>",
1313
]
1414
description = "An HTTP/2.0 client and server"
15-
documentation = "https://docs.rs/h2/0.3.4"
15+
documentation = "https://docs.rs/h2/0.3.5"
1616
repository = "https://github.com/hyperium/h2"
1717
readme = "README.md"
1818
keywords = ["http", "async", "non-blocking"]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
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.3.4")]
81+
#![doc(html_root_url = "https://docs.rs/h2/0.3.5")]
8282
#![deny(missing_debug_implementations, missing_docs)]
8383
#![cfg_attr(test, deny(warnings))]
8484

0 commit comments

Comments
 (0)