From ef09e98fbcdad09d49b84b67f1584c3e64bbd508 Mon Sep 17 00:00:00 2001
From: Carl Lerche <me@carllerche.com>
Date: Fri, 27 Apr 2018 10:51:09 -0700
Subject: [PATCH] Bump version to v0.4.7

---
 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 67b41f7..73f99ed 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+# 0.4.7 (April 27, 2018)
+
+* Make `Buf` and `BufMut` usable as trait objects (#186).
+* impl BorrowMut for BytesMut (#185).
+* Improve accessor performance (#195).
+
 # 0.4.6 (Janary 8, 2018)
 
 * Implement FromIterator for Bytes/BytesMut (#148).
diff --git a/Cargo.toml b/Cargo.toml
index 553e558..a33dfba 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.4.7" # 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 68cdbee..e912b7d 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.4.7")]
 
 extern crate byteorder;
 extern crate iovec;
-- 
GitLab