From 6fee1b05b90c959ed4edbd5f86c336e645f6898a Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Thu, 19 Jul 2018 09:22:27 -0700 Subject: [PATCH] Version 0.6.3 Changes in this release: * Fix possible double-free in `insert_many` when passed an iterator that panics in `next` (#103) * Add a new `union` feature (disabled by default) that reduces the size of the SmallVec struct (#94) * Improve performance of `extend` and `from_elem` (#93) * Improve performance of `drop` (#100) * Update dev-dependency on `bincode` (#102) * Update to build without `std` on current Rust nightly (#104) * Additional benchmarks (#95, #97). --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0b5b924..676d16f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smallvec" -version = "0.6.1" +version = "0.6.3" authors = ["Simon Sapin "] license = "MIT/Apache-2.0" repository = "https://github.com/servo/rust-smallvec"