From 52772c906d6baae71f486c2fd2c97215b1bfb96c Mon Sep 17 00:00:00 2001 From: brycx Date: Sun, 7 Jun 2020 15:48:20 +0200 Subject: [PATCH] 0.15.2 --- CHANGELOG.md | 12 ++++++++++++ Cargo.toml | 2 +- src/lib.rs | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3b395e51..e9fb4608 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +### 0.15.2 + +__Date:__ June 7, 2020. + +__Changelog:__ + +- Remove old `no_std` feature from CONTRIBUTING guidelines. +- Improve documentation and code around HKDFs maximum output length. +- Move clippy, rustfmt and basic tests to GitHub Actions ([#122](https://github.com/brycx/orion/pull/122)). +- Add random secret-key/nonce tests to AEADs and stream ciphers ([#123](https://github.com/brycx/orion/pull/123)). +- Address various clippy warnings. + ### 0.15.1 __Date:__ March 9, 2020. diff --git a/Cargo.toml b/Cargo.toml index dc2a9d71..1a841ada 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orion" -version = "0.15.1" # Update html_root_url in lib.rs along with this. +version = "0.15.2" # Update html_root_url in lib.rs along with this. authors = ["brycx "] description = "Usable, easy and safe pure-Rust crypto" keywords = [ "cryptography", "crypto", "aead", "hash", "mac" ] diff --git a/src/lib.rs b/src/lib.rs index 8ce3e4ad..38e3e766 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -59,7 +59,7 @@ unused_qualifications, overflowing_literals )] -#![doc(html_root_url = "https://docs.rs/orion/0.15.1")] +#![doc(html_root_url = "https://docs.rs/orion/0.15.2")] #[cfg(test)] #[cfg(feature = "safe_api")]