From e63b63ecce99204cce51d6ab094363a064a24d25 Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Tue, 27 Aug 2024 14:06:02 -0400 Subject: [PATCH] Bump to 0.5.2 --- Cargo.toml | 2 +- NEWS.md | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4116f79..357a566 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wycheproof" -version = "0.5.1" +version = "0.5.2" edition = "2021" authors = ["Jack Lloyd "] license = "Apache-2.0" diff --git a/NEWS.md b/NEWS.md index 48f3ca5..04fe0a9 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,9 @@ +## 0.5.2 2024-08-27 + +* Change to using include_bytes instead of include_str, which for some + unknown reason leads to dramatically smaller binaries. +* Switch to using data-encoding instead of base64/hex crates + ## 0.5.1 2023-07-13 * Update base64 dependency from 0.13 to 0.21