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"