Bump version to v0.4.9 (#220)

This commit is contained in:
Carl Lerche
2018-07-22 19:30:41 -07:00
committed by GitHub
parent 3e69a8146b
commit 234a77b026
3 changed files with 7 additions and 2 deletions
+5
View File
@@ -1,3 +1,8 @@
# 0.4.9 (July 12, 2018)
* Add 128 bit number support behind a feature flag (#209).
* Implement `IntoBuf` for `&mut [u8]`
# 0.4.8 (May 25, 2018)
* Fix panic in `BytesMut` `FromIterator` implementation.
+1 -1
View File
@@ -1,7 +1,7 @@
[package]
name = "bytes"
version = "0.4.8" # don't forget to update html_root_url
version = "0.4.9" # don't forget to update html_root_url
license = "MIT"
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.8")]
#![doc(html_root_url = "https://docs.rs/bytes/0.4.9")]
extern crate byteorder;
extern crate iovec;