Skip to content

Commit

Permalink
Bump version to v0.4.9 (#220)
Browse files Browse the repository at this point in the history
  • Loading branch information
carllerche committed Jul 23, 2018
1 parent 890812a commit ed244d3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions 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.
Expand Down
2 changes: 1 addition & 1 deletion 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 <me@carllerche.com>"]
description = "Types and traits for working with bytes"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -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;
Expand Down

0 comments on commit ed244d3

Please sign in to comment.