diff --git a/CHANGELOG.md b/CHANGELOG.md index 742b6ae..8abfc0f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ Recent Changes (arrayvec) ========================= +## 0.7.1 + +- Add new ArrayVec methods `.take()` and `.into_inner_unchecked()` by @conradludgate +- `clone_from` now uses `truncate` when needed by @a1phyr + ## 0.7.0 - `fn new_const` is now the way to const-construct arrayvec and arraystring, diff --git a/Cargo.toml b/Cargo.toml index 4e2ac02..c9d16c3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arrayvec" -version = "0.7.0" +version = "0.7.1" authors = ["bluss"] license = "MIT OR Apache-2.0" edition = "2018" diff --git a/src/lib.rs b/src/lib.rs index d5a0320..5dc0273 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -15,7 +15,7 @@ //! //! This version of arrayvec requires Rust 1.51 or later. //! -#![doc(html_root_url="https://docs.rs/arrayvec/0.6/")] +#![doc(html_root_url="https://docs.rs/arrayvec/0.7/")] #![cfg_attr(not(feature="std"), no_std)] #[cfg(feature="serde")]