mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-09-07 00:00:10 +02:00
Bump version to v0.4.11 (#235)
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
# 0.4.11 (November 17, 2018)
|
||||||
|
|
||||||
|
* Use raw pointers for potentially racy loads (#233).
|
||||||
|
* Implement `BufRead` for `buf::Reader` (#232).
|
||||||
|
* Documentation tweaks (#234).
|
||||||
|
|
||||||
# 0.4.10 (September 4, 2018)
|
# 0.4.10 (September 4, 2018)
|
||||||
|
|
||||||
* impl `Buf` and `BufMut` for `Either` (#225).
|
* impl `Buf` and `BufMut` for `Either` (#225).
|
||||||
|
|||||||
+2
-2
@@ -6,11 +6,11 @@ name = "bytes"
|
|||||||
# - Update CHANGELOG.md.
|
# - Update CHANGELOG.md.
|
||||||
# - Update doc URL.
|
# - Update doc URL.
|
||||||
# - Create "v0.4.x" git tag.
|
# - Create "v0.4.x" git tag.
|
||||||
version = "0.4.10"
|
version = "0.4.11"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
authors = ["Carl Lerche <[email protected]>"]
|
authors = ["Carl Lerche <[email protected]>"]
|
||||||
description = "Types and traits for working with bytes"
|
description = "Types and traits for working with bytes"
|
||||||
documentation = "https://docs.rs/bytes/0.4.10/bytes"
|
documentation = "https://docs.rs/bytes/0.4.11/bytes"
|
||||||
homepage = "https://github.com/carllerche/bytes"
|
homepage = "https://github.com/carllerche/bytes"
|
||||||
repository = "https://github.com/carllerche/bytes"
|
repository = "https://github.com/carllerche/bytes"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
|
|||||||
+1
-1
@@ -69,7 +69,7 @@
|
|||||||
//! and `BufMut` are infallible.
|
//! and `BufMut` are infallible.
|
||||||
|
|
||||||
#![deny(warnings, missing_docs, missing_debug_implementations)]
|
#![deny(warnings, missing_docs, missing_debug_implementations)]
|
||||||
#![doc(html_root_url = "https://docs.rs/bytes/0.4.10")]
|
#![doc(html_root_url = "https://docs.rs/bytes/0.4.11")]
|
||||||
|
|
||||||
extern crate byteorder;
|
extern crate byteorder;
|
||||||
extern crate iovec;
|
extern crate iovec;
|
||||||
|
|||||||
Reference in New Issue
Block a user