From 355a662976cb845d21edda0626c7b2ee467e814d Mon Sep 17 00:00:00 2001 From: Carl Lerche <me@carllerche.com> Date: Mon, 29 Jan 2018 09:40:45 -0800 Subject: [PATCH] Bump version --- CHANGELOG.md | 2 ++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 67b41f7..1373a58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +# 0.5.0 (unreleased) + # 0.4.6 (Janary 8, 2018) * Implement FromIterator for Bytes/BytesMut (#148). diff --git a/Cargo.toml b/Cargo.toml index ce80a61..83b75a7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "bytes" -version = "0.4.6" # don't forget to update html_root_url +version = "0.5.0" # 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 206ee76..87dc15a 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.6")] +#![doc(html_root_url = "https://docs.rs/bytes/0.5.0")] extern crate byteorder; extern crate iovec; -- GitLab