Skip to content

Commit 4948b10

Browse files
authored
Bump version to v0.4.12 (#250)
1 parent 0e8b440 commit 4948b10

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# 0.4.12 (March 6, 2018)
2+
3+
### Added
4+
- Implement `FromIterator<&'a u8>` for `BytesMut`/`Bytes` (#244).
5+
- Implement `Buf` for `VecDeque` (#249).
6+
17
# 0.4.11 (November 17, 2018)
28

39
* Use raw pointers for potentially racy loads (#233).

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ name = "bytes"
66
# - Update CHANGELOG.md.
77
# - Update doc URL.
88
# - Create "v0.4.x" git tag.
9-
version = "0.4.11"
9+
version = "0.4.12"
1010
license = "MIT"
1111
authors = ["Carl Lerche <me@carllerche.com>"]
1212
description = "Types and traits for working with bytes"
13-
documentation = "https://docs.rs/bytes/0.4.11/bytes"
13+
documentation = "https://docs.rs/bytes/0.4.12/bytes"
1414
homepage = "https://github.com/carllerche/bytes"
1515
repository = "https://github.com/carllerche/bytes"
1616
readme = "README.md"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ A utility library for working with bytes.
55
[![Crates.io](https://img.shields.io/crates/v/bytes.svg?maxAge=2592000)](https://crates.io/crates/bytes)
66
[![Build Status](https://travis-ci.org/carllerche/bytes.svg?branch=master)](https://travis-ci.org/carllerche/bytes)
77

8-
[Documentation](https://carllerche.github.io/bytes/bytes/index.html)
8+
[Documentation](https://docs.rs/bytes/0.4.12/bytes/)
99

1010
## Usage
1111

1212
To use `bytes`, first add this to your `Cargo.toml`:
1313

1414
```toml
1515
[dependencies]
16-
bytes = "0.4"
16+
bytes = "0.4.12"
1717
```
1818

1919
Next, add this to your crate:
@@ -30,7 +30,7 @@ Serde support is optional and disabled by default. To enable use the feature `se
3030

3131
```toml
3232
[dependencies]
33-
bytes = { version = "0.4", features = ["serde"] }
33+
bytes = { version = "0.4.12", features = ["serde"] }
3434
```
3535

3636
## License

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
//! and `BufMut` are infallible.
7070
7171
#![deny(warnings, missing_docs, missing_debug_implementations)]
72-
#![doc(html_root_url = "https://docs.rs/bytes/0.4.11")]
72+
#![doc(html_root_url = "https://docs.rs/bytes/0.4.12")]
7373

7474
extern crate byteorder;
7575
extern crate iovec;

0 commit comments

Comments
 (0)