Skip to content

Commit ce9c460

Browse files
authored
0.17.1 (#271)
1 parent 5db9dfe commit ce9c460

File tree

3 files changed

+19
-2
lines changed

3 files changed

+19
-2
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
### 0.17.1
2+
3+
__Date:__ January 30, 2022.
4+
5+
__Changelog:__
6+
7+
- Use fiat-crypto from their provided crate on crates.io ([#201](https://github.com/orion-rs/orion/issues/201)) (by [Vince Mutolo](https://github.com/vlmutolo)).
8+
- Doc-tests no longer fail if run with `cargo test --no-default-features`, as the erroneous usages have been feature-gated ([#254](https://github.com/orion-rs/orion/issues/254)).
9+
- Specify MSRV in `Cargo.toml` via `rust-version` field ([#250](https://github.com/orion-rs/orion/issues/250)).
10+
- `audit-check` GitHub Action added in addition to `cargo-audit` ([#257](https://github.com/orion-rs/orion/issues/257)).
11+
- Updated copyright year to 2022 ([#267](https://github.com/orion-rs/orion/issues/267)).
12+
- Implement `std::io::Write` for BLAKE2 and SHA2, also adding `orion::hash::digest_from_reader` ([#228](https://github.com/orion-rs/orion/pull/228)) (by [Vince Mutolo](https://github.com/vlmutolo)).
13+
- Implement Poly1305 using fiat-crypto ([#198](https://github.com/orion-rs/orion/issues/198)).
14+
- Correct capitalization of crate name in docs, README and wiki ([#259](https://github.com/orion-rs/orion/issues/259)).
15+
- Fix the benchmarking targets that failed to compile after `0.17.0` ([#270](https://github.com/orion-rs/orion/pull/270)).
16+
- Various internal cleanups and improvements.
17+
118
### 0.17.0
219

320
__Date:__ November 24, 2021.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "orion"
3-
version = "0.17.0" # Update html_root_url in lib.rs along with this.
3+
version = "0.17.1" # Update html_root_url in lib.rs along with this.
44
authors = ["brycx <[email protected]>"]
55
description = "Usable, easy and safe pure-Rust crypto"
66
keywords = [ "cryptography", "crypto", "aead", "hash", "mac" ]

src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
unused_qualifications,
6565
overflowing_literals
6666
)]
67-
#![doc(html_root_url = "https://docs.rs/orion/0.17.0")]
67+
#![doc(html_root_url = "https://docs.rs/orion/0.17.1")]
6868
#![cfg_attr(docsrs, feature(doc_cfg))]
6969

7070
#[cfg(test)]

0 commit comments

Comments
 (0)