From 9156256501c7d1992722e33f84fe60f122e45311 Mon Sep 17 00:00:00 2001 From: bluss Date: Mon, 16 Oct 2017 22:39:28 +0200 Subject: [PATCH] 0.4.3 --- Cargo.toml | 2 +- README.rst | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4ac5288..c545a10 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arrayvec" -version = "0.4.2" +version = "0.4.3" authors = ["bluss"] license = "MIT/Apache-2.0" diff --git a/README.rst b/README.rst index a667dcf..078910b 100644 --- a/README.rst +++ b/README.rst @@ -22,6 +22,12 @@ __ https://docs.rs/arrayvec Recent Changes (arrayvec) ------------------------- +- 0.4.3 + + - Improve performance for ``ArrayVec::extend`` with a lower level + implementation (#74) + - Small cleanup in dependencies (use no std for crates where we don't need more) + - 0.4.2 - Add constructor method ``new`` to ``CapacityError``.