Skip to content

Commit

Permalink
Bump version to v0.4.8 (#206)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche committed May 25, 2018
1 parent 8c04114 commit 406b048
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# 0.4.8 (May 25, 2018)

* Fix panic in `BytesMut` `FromIterator` implementation.
* Bytes: Recycle space when reserving space in vec mode (#197).
* Bytes: Add resize fn (#203).

# 0.4.7 (April 27, 2018)

* Make `Buf` and `BufMut` usable as trait objects (#186).
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "bytes"
version = "0.4.7" # don't forget to update html_root_url
version = "0.4.8" # don't forget to update html_root_url
license = "MIT/Apache-2.0"
authors = ["Carl Lerche <me@carllerche.com>"]
description = "Types and traits for working with bytes"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
//! and `BufMut` are infallible.

#![deny(warnings, missing_docs, missing_debug_implementations)]
#![doc(html_root_url = "https://docs.rs/bytes/0.4.7")]
#![doc(html_root_url = "https://docs.rs/bytes/0.4.8")]

extern crate byteorder;
extern crate iovec;
Expand Down

0 comments on commit 406b048

Please sign in to comment.