From 42843cdb6c24ef3684494617e78745a62a64a29c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bart=C5=82omiej=20Kami=C5=84ski?= Date: Tue, 2 Mar 2021 13:25:11 +0100 Subject: [PATCH] Bump version --- CHANGELOG.md | 3 +++ Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 705fe30882..d5e50e7b17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +* **`0.12.4`** + * Fix unsoundness in the `arr!` macro. + * **`0.12.0`** * Allow trailing commas in `arr!` macro. * **BREAKING**: Serialize `GenericArray` using `serde` tuples, instead of variable-length sequences. This may not be compatible with old serialized data. diff --git a/Cargo.toml b/Cargo.toml index 62231eba6e..683733514a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "generic-array" -version = "0.12.3" +version = "0.12.4" authors = [ "Bartłomiej Kamiński ", "Aaron Trent " ] description = "Generic types implementing functionality of arrays" @@ -28,4 +28,4 @@ serde = { version = "1.0", optional = true, default-features = false } [dev_dependencies] # this can't yet be made optional, see https://github.com/rust-lang/cargo/issues/1596 serde_json = "1.0" -bincode = "1.0" \ No newline at end of file +bincode = "1.0"