mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-24 00:00:14 +02:00
prepare 1.0.1 release (#460)
This commit is contained in:
@@ -1,3 +1,12 @@
|
|||||||
|
# 1.0.1 (January 11, 2021)
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
- mark `Vec::put_slice` with `#[inline]` (#459)
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
- Fix deprecation warning (#457)
|
||||||
|
- use `Box::into_raw` instead of `mem::forget`-in-disguise (#458)
|
||||||
|
|
||||||
# 1.0.0 (December 22, 2020)
|
# 1.0.0 (December 22, 2020)
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
+2
-2
@@ -6,14 +6,14 @@ name = "bytes"
|
|||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Update doc URL.
|
# - Update doc URL.
|
||||||
# - Create "v1.0.x" git tag.
|
# - Create "v1.0.x" git tag.
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = [
|
authors = [
|
||||||
"Carl Lerche <[email protected]>",
|
"Carl Lerche <[email protected]>",
|
||||||
"Sean McArthur <[email protected]>",
|
"Sean McArthur <[email protected]>",
|
||||||
]
|
]
|
||||||
description = "Types and traits for working with bytes"
|
description = "Types and traits for working with bytes"
|
||||||
documentation = "https://docs.rs/bytes/1.0.0/bytes/"
|
documentation = "https://docs.rs/bytes/1.0.1/bytes/"
|
||||||
repository = "https://github.com/tokio-rs/bytes"
|
repository = "https://github.com/tokio-rs/bytes"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
keywords = ["buffers", "zero-copy", "io"]
|
keywords = ["buffers", "zero-copy", "io"]
|
||||||
|
|||||||
+1
-1
@@ -3,7 +3,7 @@
|
|||||||
no_crate_inject,
|
no_crate_inject,
|
||||||
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
|
attr(deny(warnings, rust_2018_idioms), allow(dead_code, unused_variables))
|
||||||
))]
|
))]
|
||||||
#![doc(html_root_url = "https://docs.rs/bytes/1.0.0")]
|
#![doc(html_root_url = "https://docs.rs/bytes/1.0.1")]
|
||||||
#![no_std]
|
#![no_std]
|
||||||
|
|
||||||
//! Provides abstractions for working with bytes.
|
//! Provides abstractions for working with bytes.
|
||||||
|
|||||||
Reference in New Issue
Block a user