From cd32126e7209b5de8684680b5f9ce5de377e769c Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Tue, 11 Aug 2020 15:27:07 -0700 Subject: [PATCH] Version 1.4.2 * `insert_many` no longer leaks elements if the provided iterator panics (#213). * The unstable `const_generics` and `specialization` features are updated to work with the most recent nightly Rust toolchain (#232). * Internal code cleanup (#229, #231). --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index a58b0c2..f163aff 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "smallvec" -version = "1.4.1" +version = "1.4.2" edition = "2018" -authors = ["Simon Sapin "] +authors = ["The Servo Project Developers"] license = "MIT/Apache-2.0" repository = "https://github.com/servo/rust-smallvec" description = "'Small vector' optimization: store up to a small number of items on the stack"