Skip to content

Commit 122091a

Browse files
committed
v0.4.0
1 parent 9defea8 commit 122091a

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
# 0.4.0 (November 15, 2023)
2+
3+
* Update to `http` 1.0.
4+
* Remove deprecated `Server::poll_close()`.
5+
16
# 0.3.22 (November 15, 2023)
27

38
* Add `header_table_size(usize)` option to client and server builders.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ name = "h2"
55
# - html_root_url.
66
# - Update CHANGELOG.md.
77
# - Create git tag
8-
version = "0.4.0-dev"
8+
version = "0.4.0"
99
license = "MIT"
1010
authors = [
1111
"Carl Lerche <[email protected]>",

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ To use `h2`, first add this to your `Cargo.toml`:
3636

3737
```toml
3838
[dependencies]
39-
h2 = "0.3"
39+
h2 = "0.4"
4040
```
4141

4242
Next, add this to your crate:

src/lib.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
//!
1212
//! ```toml
1313
//! [dependencies]
14-
//! h2 = "0.3"
14+
//! h2 = "0.4"
1515
//! ```
1616
//!
1717
//! # Layout
@@ -78,7 +78,6 @@
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.22")]
8281
#![deny(
8382
missing_debug_implementations,
8483
missing_docs,

0 commit comments

Comments
 (0)