From e5c4c6028d5e33bd472dcba5f4ef4c4e1e5d4bbc Mon Sep 17 00:00:00 2001 From: Carl Lerche <me@carllerche.com> Date: Mon, 8 Jan 2018 09:11:42 -0800 Subject: [PATCH] Bump version to v0.4.6 --- CHANGELOG.md | 7 +++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaa2308..67b41f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 0.4.6 (Janary 8, 2018) + +* Implement FromIterator for Bytes/BytesMut (#148). +* Add `advance` fn to Bytes/BytesMut (#166). +* Add `unsplit` fn to `BytesMut` (#162, #173). +* Improvements to Bytes split fns (#92). + # 0.4.5 (August 12, 2017) * Fix range bug in `Take::bytes` diff --git a/Cargo.toml b/Cargo.toml index 07c58c0..553e558 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bytes" -version = "0.4.5" +version = "0.4.6" # 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 fbe6572..206ee76 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")] +#![doc(html_root_url = "https://docs.rs/bytes/0.4.6")] extern crate byteorder; extern crate iovec; -- GitLab