From d80de1dfc6584b9438c3718c7e89b396edf26d4d Mon Sep 17 00:00:00 2001 From: brycx Date: Tue, 19 Sep 2023 10:41:25 +0200 Subject: [PATCH] 0.17.6 --- .github/workflows/test.yml | 11 +++++++++++ CHANGELOG.md | 4 ++-- Cargo.toml | 2 +- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 510022e0..be1bbb38 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -64,6 +64,12 @@ jobs: with: command: test args: --no-default-features --features alloc --tests + + - name: Test debug-mode, experimental feature + uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 + with: + command: test + args: --features experimental - name: Test release-mode, default features uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 @@ -89,6 +95,11 @@ jobs: command: test args: --release --no-default-features --features alloc --tests + - name: Test release-mode, experimental feature + uses: actions-rs/cargo@844f36862e911db73fe0815f00a4a2602c279505 + with: + command: test + args: --release --features experimental sanitizers: name: Tests w. sanitizers diff --git a/CHANGELOG.md b/CHANGELOG.md index 26ec82d1..11105d21 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ -### TBD +### 0.17.6 -__Date:__ TBD. +__Date:__ September 19, 2023. __Changelog:__ - Bump MSRV to `1.70.0`. diff --git a/Cargo.toml b/Cargo.toml index c6d38ef9..a73179c2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "orion" -version = "0.17.5" +version = "0.17.6" authors = ["brycx "] description = "Usable, easy and safe pure-Rust crypto" keywords = [ "cryptography", "crypto", "aead", "hash", "mac" ]