Skip to content

Commit 7b18c1c

Browse files
authored
prepare 1.0.1 release (#460)
1 parent df20a68 commit 7b18c1c

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# 1.0.1 (January 11, 2021)
2+
3+
### Changed
4+
- mark `Vec::put_slice` with `#[inline]` (#459)
5+
6+
### Fixed
7+
- Fix deprecation warning (#457)
8+
- use `Box::into_raw` instead of `mem::forget`-in-disguise (#458)
9+
110
# 1.0.0 (December 22, 2020)
211

312
### Changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ name = "bytes"
66
# - Update CHANGELOG.md.
77
# - Update doc URL.
88
# - Create "v1.0.x" git tag.
9-
version = "1.0.0"
9+
version = "1.0.1"
1010
license = "MIT"
1111
authors = [
1212
"Carl Lerche <me@carllerche.com>",
1313
"Sean McArthur <sean@seanmonstar.com>",
1414
]
1515
description = "Types and traits for working with bytes"
16-
documentation = "https://docs.rs/bytes/1.0.0/bytes/"
16+
documentation = "https://docs.rs/bytes/1.0.1/bytes/"
1717
repository = "https://github.com/tokio-rs/bytes"
1818
readme = "README.md"
1919
keywords = ["buffers", "zero-copy", "io"]

src/lib.rs

Lines changed: 1 addition & 1 deletion
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/1.0.0")]
6+
#![doc(html_root_url = "https://docs.rs/bytes/1.0.1")]
77
#![no_std]
88

99
//! Provides abstractions for working with bytes.

0 commit comments

Comments
 (0)