mirror of
https://github.com/tokio-rs/bytes.git
synced 2026-08-29 00:00:15 +02:00
Bump version to v0.4.12 (#250)
This commit is contained in:
@@ -1,3 +1,9 @@
|
|||||||
|
# 0.4.12 (March 6, 2018)
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Implement `FromIterator<&'a u8>` for `BytesMut`/`Bytes` (#244).
|
||||||
|
- Implement `Buf` for `VecDeque` (#249).
|
||||||
|
|
||||||
# 0.4.11 (November 17, 2018)
|
# 0.4.11 (November 17, 2018)
|
||||||
|
|
||||||
* Use raw pointers for potentially racy loads (#233).
|
* Use raw pointers for potentially racy loads (#233).
|
||||||
|
|||||||
+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.11"
|
version = "0.4.12"
|
||||||
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.11/bytes"
|
documentation = "https://docs.rs/bytes/0.4.12/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"
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ A utility library for working with bytes.
|
|||||||
[](https://crates.io/crates/bytes)
|
[](https://crates.io/crates/bytes)
|
||||||
[](https://travis-ci.org/carllerche/bytes)
|
[](https://travis-ci.org/carllerche/bytes)
|
||||||
|
|
||||||
[Documentation](https://carllerche.github.io/bytes/bytes/index.html)
|
[Documentation](https://docs.rs/bytes/0.4.12/bytes/)
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
@@ -13,7 +13,7 @@ To use `bytes`, first add this to your `Cargo.toml`:
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = "0.4"
|
bytes = "0.4.12"
|
||||||
```
|
```
|
||||||
|
|
||||||
Next, add this to your crate:
|
Next, add this to your crate:
|
||||||
@@ -30,7 +30,7 @@ Serde support is optional and disabled by default. To enable use the feature `se
|
|||||||
|
|
||||||
```toml
|
```toml
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bytes = { version = "0.4", features = ["serde"] }
|
bytes = { version = "0.4.12", features = ["serde"] }
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|||||||
+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.11")]
|
#![doc(html_root_url = "https://docs.rs/bytes/0.4.12")]
|
||||||
|
|
||||||
extern crate byteorder;
|
extern crate byteorder;
|
||||||
extern crate iovec;
|
extern crate iovec;
|
||||||
|
|||||||
Reference in New Issue
Block a user