diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 27d2621..4930ce2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,7 +43,7 @@ jobs: - --features serde toolchain: - stable - - 1.83.0 + - 1.85.0 name: test steps: - name: Checkout sources diff --git a/CHANGELOG.md b/CHANGELOG.md index e96013c..a66f37b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 0.6.0-pre.1 (April 6, 2026) +* MSRV bumped to 1.85 +* Updated rand_core dependency to 0.9 +* Updated rand dependency to 0.9 +* Updated subtle dependency to 2.6 +* Fixed docs issue + ## 0.6.0-pre.0 (November 8, 2025) * MSRV bumped to 1.83 * Updated Ristretto255 random scalar generation diff --git a/Cargo.toml b/Cargo.toml index 86eae97..2973f27 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,8 +8,8 @@ license = "MIT" name = "voprf" readme = "README.md" repository = "https://github.com/facebook/voprf/" -rust-version = "1.83" -version = "0.6.0-pre.0" +rust-version = "1.85" +version = "0.6.0-pre.1" [features] alloc = [] diff --git a/README.md b/README.md index b085d2f..887661d 100644 --- a/README.md +++ b/README.md @@ -16,12 +16,12 @@ Installation Add the following line to the dependencies of your `Cargo.toml`: ``` -voprf = "0.6.0-pre.0" +voprf = "0.6.0-pre.1" ``` ### Minimum Supported Rust Version -Rust **1.65** or higher. +Rust **1.85** or higher. Contributors ------------