Bump version

This commit is contained in:
Carl Lerche
2018-01-29 09:40:45 -08:00
parent 1167268890
commit dc5f7466ec
3 changed files with 4 additions and 2 deletions
+2
View File
@@ -1,3 +1,5 @@
# 0.5.0 (unreleased)
# 0.4.6 (Janary 8, 2018)
* Implement FromIterator for Bytes/BytesMut (#148).
+1 -1
View File
@@ -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"
+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.6")]
#![doc(html_root_url = "https://docs.rs/bytes/0.5.0")]
extern crate byteorder;
extern crate iovec;