From e364e2e79d44f763653e5a112ac1a124328e3fd4 Mon Sep 17 00:00:00 2001 From: bluss Date: Fri, 27 Oct 2017 22:54:46 +0200 Subject: [PATCH] 0.4.5 --- Cargo.toml | 8 +++----- README.rst | 11 +++++++++++ 2 files changed, 14 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 683f771..deeddb4 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arrayvec" -version = "0.4.4" +version = "0.4.5" authors = ["bluss"] license = "MIT/Apache-2.0" @@ -11,10 +11,8 @@ repository = "https://github.com/bluss/arrayvec" keywords = ["stack", "vector", "array", "data-structure", "no_std"] categories = ["data-structures", "no-std"] -[dependencies.nodrop] -version = "0.1.8" -path = "nodrop" -default-features = false +[dependencies] +nodrop = { version = "0.1.12", path = "nodrop", default-features = false } [dependencies.serde] version = "1.0" diff --git a/README.rst b/README.rst index 1756c4c..8ca3370 100644 --- a/README.rst +++ b/README.rst @@ -22,6 +22,17 @@ __ https://docs.rs/arrayvec Recent Changes (arrayvec) ------------------------- +- 0.4.5 + + - Add methods to ``ArrayString`` by @DenialAdams: + + - ``.pop() -> Option`` + - ``.truncate(new_len)`` + - ``.remove(index) -> char`` + + - Remove dependency on crate odds + - Document debug assertions in unsafe methods better + - 0.4.4 - Add method ``ArrayVec::truncate()`` by @niklasf