Skip to content

Commit bd78f19

Browse files
authored
chore: prepare for v1.0.0 work (#448)
1 parent 39c6d7a commit bd78f19

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Cargo.toml

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,20 +5,21 @@ name = "bytes"
55
# - Update html_root_url.
66
# - Update CHANGELOG.md.
77
# - Update doc URL.
8-
# - Create "v0.6.x" git tag.
9-
version = "0.6.0"
8+
# - Create "v1.0.x" git tag.
9+
version = "1.0.0"
1010
license = "MIT"
1111
authors = [
1212
"Carl Lerche <[email protected]>",
1313
"Sean McArthur <[email protected]>",
1414
]
1515
description = "Types and traits for working with bytes"
16-
documentation = "https://docs.rs/bytes/0.6.0/bytes/"
16+
documentation = "https://docs.rs/bytes/1.0.0/bytes/"
1717
repository = "https://github.com/tokio-rs/bytes"
1818
readme = "README.md"
1919
keywords = ["buffers", "zero-copy", "io"]
2020
categories = ["network-programming", "data-structures"]
2121
edition = "2018"
22+
publish = false
2223

2324
[features]
2425
default = ["std"]

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
no_crate_inject,
44
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
55
))]
6-
#![doc(html_root_url = "https://docs.rs/bytes/0.6.0")]
6+
#![doc(html_root_url = "https://docs.rs/bytes/1.0.0")]
77
#![no_std]
88

99
//! Provides abstractions for working with bytes.

0 commit comments

Comments
 (0)