Skip to content
Snippets Groups Projects
Unverified Commit 406b048a authored by Carl Lerche's avatar Carl Lerche Committed by GitHub
Browse files

Bump version to v0.4.8 (#206)

parent 8c041142
No related branches found
No related tags found
No related merge requests found
# 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) # 0.4.7 (April 27, 2018)
* Make `Buf` and `BufMut` usable as trait objects (#186). * Make `Buf` and `BufMut` usable as trait objects (#186).
......
[package] [package]
name = "bytes" 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" license = "MIT/Apache-2.0"
authors = ["Carl Lerche <me@carllerche.com>"] authors = ["Carl Lerche <me@carllerche.com>"]
description = "Types and traits for working with bytes" description = "Types and traits for working with bytes"
......
...@@ -69,7 +69,7 @@ ...@@ -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.7")] #![doc(html_root_url = "https://docs.rs/bytes/0.4.8")]
extern crate byteorder; extern crate byteorder;
extern crate iovec; extern crate iovec;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment