From 04d54bd9ca605f90e643ca82e7daa78ea0a6e750 Mon Sep 17 00:00:00 2001 From: Matt Brubeck Date: Mon, 27 Jan 2020 20:27:28 -0800 Subject: [PATCH] Version 1.2.0 Changes in this release: * `IntoIter` now implments `Debug` (#196). * `smallvec!` macro is now easier to use in `no_std` contexts where the `vec!` macro isn't automatically imported (#198). --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 2fc3f03..b09d63f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smallvec" -version = "1.1.0" +version = "1.2.0" edition = "2018" authors = ["Simon Sapin "] license = "MIT/Apache-2.0"