From 82ab295554d42edd6aaabe96fd2d1ed750163dbb Mon Sep 17 00:00:00 2001 From: bluss Date: Wed, 21 Sep 2016 14:25:02 +0200 Subject: [PATCH] 0.3.18 --- Cargo.toml | 2 +- README.rst | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index ae04b7e..a6e5156 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arrayvec" -version = "0.3.17" +version = "0.3.18" authors = ["bluss"] license = "MIT/Apache-2.0" diff --git a/README.rst b/README.rst index 6fd1407..527d9a9 100644 --- a/README.rst +++ b/README.rst @@ -22,6 +22,12 @@ __ http://bluss.github.io/arrayvec Recent Changes (arrayvec) ------------------------- +- 0.3.18 + + - Fix bounds check in ``ArrayVec::insert``! + It would be buggy if ``self.len() < index < self.capacity()``. Take note of + the push out behavior specified in the docs. + - 0.3.17 - Added crate feature ``use_union`` which forwards to the nodrop crate feature