Skip to content

Commit

Permalink
chore: Release 2.0.0-rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
pinkforest committed Mar 31, 2023
1 parent 02a5ce2 commit ce16570
Show file tree
Hide file tree
Showing 8 changed files with 149 additions and 247 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ env:

jobs:
test:
name: Test all features
name: Test with multiple feature combinations
runs-on: ubuntu-latest
strategy:
matrix:
Expand All @@ -29,6 +29,10 @@ jobs:
with:
target: ${{ matrix.target }}
- run: ${{ matrix.deps }}
- run: cargo test --target ${{ matrix.target }} --no-default-features
- run: cargo test --target ${{ matrix.target }} --no-default-features --features reusable_secrets
- run: cargo test --target ${{ matrix.target }} --no-default-features --features static_secrets
- run: cargo test --target ${{ matrix.target }}
- run: cargo test --target ${{ matrix.target }} --all-features

build-simd:
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,14 @@ Entries are listed in reverse chronological order.

# 2.x Series

## 2.0.0-rc.2

* Update MSRV to 1.60.
* Update edition to 2021
* Add `.as_bytes()` and `AsRef<[u8]>` for `Shared/StaticSecret`
* Add `getrandom` feature to provide `random_from_rng` constructors
* Make `StaticSecrets` optional via feature `static_secrets`
* Update underlying `curve25519_dalek` library to `4.0.0-rc.2`

## 2.0.0-pre.1

Expand Down

0 comments on commit ce16570

Please sign in to comment.