From 614b82a7eb61bfbd0f3c9d01960a1c0a6fe6784b Mon Sep 17 00:00:00 2001 From: Tony Arcieri Date: Sat, 29 Feb 2020 13:46:49 -0800 Subject: [PATCH] v0.32.0 --- CHANGES.md | 11 +++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- src/lib.rs | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 316cdf25..271aac2f 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,14 @@ +## [0.32.0] (2020-02-29) + +- Rename `yolocrypto` feature to `untested` ([#5]) +- MSRV 1.40+ ([#3]) +- Update `anomaly` requirement from 0.1.2 to 0.2.0 ([#2]) + +[0.32.0]: https://github.com/iqlusioninc/yubihsm.rs/pull/6 +[#2]: https://github.com/iqlusioninc/yubihsm.rs/pull/2 +[#3]: https://github.com/iqlusioninc/yubihsm.rs/pull/3 +[#5]: https://github.com/iqlusioninc/yubihsm.rs/pull/5 + ## 0.31.0 (2020-01-19) - Upgrade `signatory` to v0.18 diff --git a/Cargo.lock b/Cargo.lock index fc83e581..1bcfa570 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1519,7 +1519,7 @@ dependencies = [ [[package]] name = "yubihsm" -version = "0.31.0" +version = "0.32.0" dependencies = [ "aes", "anomaly", diff --git a/Cargo.toml b/Cargo.toml index 908a3a67..bf18fceb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "yubihsm" -version = "0.31.0" # Also update html_root_url in lib.rs when bumping this +version = "0.32.0" # Also update html_root_url in lib.rs when bumping this description = """ Pure Rust client for YubiHSM2 devices with support for HTTP and USB-based access to the device. Supports most HSM functionality diff --git a/src/lib.rs b/src/lib.rs index 79dd2dd0..aa4b1095 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -55,7 +55,7 @@ #![warn(missing_docs, rust_2018_idioms, unused_qualifications)] #![doc( html_logo_url = "https://raw.githubusercontent.com/iqlusioninc/yubihsm.rs/develop/img/logo.png", - html_root_url = "https://docs.rs/yubihsm/0.31.0" + html_root_url = "https://docs.rs/yubihsm/0.32.0" )] #[macro_use]