From 406b048ae6f60237f71881c34eee441af035a275 Mon Sep 17 00:00:00 2001 From: Carl Lerche <me@carllerche.com> Date: Fri, 25 May 2018 16:50:42 -0700 Subject: [PATCH] Bump version to v0.4.8 (#206) --- CHANGELOG.md | 6 ++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 73f99ed..42a4025 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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). diff --git a/Cargo.toml b/Cargo.toml index a33dfba..1467e4e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/src/lib.rs b/src/lib.rs index e912b7d..92702c9 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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; -- GitLab