Bump version to v0.4.8 (#206)

This commit is contained in:
Carl Lerche
2018-05-25 16:50:42 -07:00
committed by GitHub
parent 31c18918e9
commit 8bedd043e2
3 changed files with 8 additions and 2 deletions
+6
View File
@@ -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).
+1 -1
View File
@@ -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"
+1 -1
View File
@@ -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;