From d336f8c5c54df87154deb59ffc5c0a91749069be Mon Sep 17 00:00:00 2001 From: bluss Date: Fri, 23 Oct 2020 18:31:24 +0200 Subject: [PATCH] 0.5.2 --- CHANGELOG.md | 11 +++++++++++ Cargo.toml | 2 +- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ced17c0..9ee813c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,17 @@ Recent Changes (arrayvec) ------------------------- +- 0.5.2 + + - Add `is_empty` methods for ArrayVec and ArrayString by @nicbn + - Implement `TryFrom` for ArrayVec by @paulkernfeld + - Add `unstable-const-fn` to make `new` methods const by @m-ou-se + - Run miri in CI and a few related fixes by @RalfJung + - Fix outdated comment by @Phlosioneer + - Move changelog to a separate file by @Luro02 + - Remove deprecated `Error::description` by @AnderEnder + - Use pointer method `add` by @hbina + - 0.5.1 - Add `as_ptr`, `as_mut_ptr` accessors directly on the `ArrayVec` by @tbu- diff --git a/Cargo.toml b/Cargo.toml index 684d610..d130388 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arrayvec" -version = "0.5.1" +version = "0.5.2" authors = ["bluss"] license = "MIT/Apache-2.0" edition = "2018"