Skip to content

Commit

Permalink
chore: prepare v0.5.1 release (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler authored and carllerche committed Nov 26, 2019
1 parent 1db67b4 commit 3cf9128
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# 0.5.1 (November 25, 2019)

### Fix
- Growth documentation for `BytesMut` (#321)

# 0.5.0 (November 25, 2019)

### Fix
- potential overflow in `copy_to_slice`
- Potential overflow in `copy_to_slice`

### Changed
- Increased minimum supported Rust version to 1.39.
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name = "bytes"
# - Update CHANGELOG.md.
# - Update doc URL.
# - Create "v0.5.x" git tag.
version = "0.5.0"
version = "0.5.1"
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
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![deny(warnings, missing_docs, missing_debug_implementations, rust_2018_idioms)]
#![doc(html_root_url = "https://docs.rs/bytes/0.5.0")]
#![doc(html_root_url = "https://docs.rs/bytes/0.5.1")]
#![no_std]

//! Provides abstractions for working with bytes.
Expand Down

0 comments on commit 3cf9128

Please sign in to comment.