Skip to content

Commit

Permalink
0.15.2
Browse files Browse the repository at this point in the history
  • Loading branch information
brycx committed Jun 7, 2020
1 parent fda1c14 commit 52772c9
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions 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.
Expand Down
2 changes: 1 addition & 1 deletion 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 <brycx@protonmail.com>"]
description = "Usable, easy and safe pure-Rust crypto"
keywords = [ "cryptography", "crypto", "aead", "hash", "mac" ]
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Expand Up @@ -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")]
Expand Down

0 comments on commit 52772c9

Please sign in to comment.