From ed244d3b548d44d6bdc9d0fec5d0c21f9f898753 Mon Sep 17 00:00:00 2001 From: Carl Lerche Date: Sun, 22 Jul 2018 19:30:41 -0700 Subject: [PATCH] Bump version to v0.4.9 (#220) --- CHANGELOG.md | 5 +++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 42a40254a..1e87d35be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Cargo.toml b/Cargo.toml index fcc73971b..9cfed61e5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 "] description = "Types and traits for working with bytes" diff --git a/src/lib.rs b/src/lib.rs index 4f77c09b9..eccb8a380 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.8")] +#![doc(html_root_url = "https://docs.rs/bytes/0.4.9")] extern crate byteorder; extern crate iovec;