Skip to content

Commit 676a068

Browse files
committed
Prepare for 0.3.x changes
1 parent 3bb01aa commit 676a068

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

Cargo.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,23 @@ name = "h2"
55
# - html_root_url.
66
# - Update CHANGELOG.md.
77
# - Create git tag
8-
version = "0.2.7"
8+
version = "0.3.0"
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.2.7/h2/"
15+
documentation = "https://docs.rs/h2/0.3.0/h2/"
1616
repository = "https://github.com/hyperium/h2"
1717
readme = "README.md"
1818
keywords = ["http", "async", "non-blocking"]
1919
categories = ["asynchronous", "web-programming", "network-programming"]
2020
exclude = ["fixtures/**", "ci/**"]
2121
edition = "2018"
2222

23+
publish = false
24+
2325
[features]
2426
# Enables `futures::Stream` implementations for various types.
2527
stream = []

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.2.7")]
81+
#![doc(html_root_url = "https://docs.rs/h2/0.3.0")]
8282
#![deny(missing_debug_implementations, missing_docs)]
8383
#![cfg_attr(test, deny(warnings))]
8484

0 commit comments

Comments
 (0)