From 198a4031940fcfd8f63d731aea33da42eed6e898 Mon Sep 17 00:00:00 2001 From: bluss Date: Mon, 29 Mar 2021 17:36:54 +0200 Subject: [PATCH] 0.6.1 --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 434deb1..9d8fb05 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,16 @@ Recent Changes (arrayvec) ========================= +## 0.6.1 + +- The ``ArrayVec::new`` and ``ArrayString::new`` constructors are properly + const fns on stable and the feature flag ``unstable-const-fn`` is now deprecated. + by @rodrimati1992 + +- Small fix to the capacity check macro by @Xaeroxe +- Typo fix in documentation by @cuviper +- Small code cleanup by @bluss + ## 0.6.0 - The **const generics** release 🎉. Arrayvec finally implements what it diff --git a/Cargo.toml b/Cargo.toml index 813324a..4252335 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arrayvec" -version = "0.6.0" +version = "0.6.1" authors = ["bluss"] license = "MIT OR Apache-2.0" edition = "2018"