From f9defd2fe0e1bdcb018ddacfcac3aa92d1d00fc4 Mon Sep 17 00:00:00 2001 From: bluss Date: Sat, 6 Feb 2016 20:24:11 +0100 Subject: [PATCH] Bump arrayvec to 0.3.15 Fixes #20 --- Cargo.toml | 2 +- README.rst | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 3dbdb8e..e99abe7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "arrayvec" -version = "0.3.14" +version = "0.3.15" authors = ["bluss"] license = "MIT/Apache-2.0" diff --git a/README.rst b/README.rst index 23b1d6d..e7d4517 100644 --- a/README.rst +++ b/README.rst @@ -22,6 +22,12 @@ __ http://bluss.github.io/arrayvec Recent Changes (arrayvec) ------------------------- +- 0.3.15 + + - Add feature std, which you can opt out of to use ``no_std`` (requires Rust 1.6 + to opt out). + - Implement ``Clone::clone_from`` for ArrayVec and ArrayString + - 0.3.14 - Add ``ArrayString::from(&str)``