From ad4f439d818e5a5b92a1e9853523fd70feb1999e Mon Sep 17 00:00:00 2001 From: Bogdan Opanchuk Date: Tue, 18 Feb 2025 12:48:58 -0800 Subject: [PATCH] Update the changelog for #74 and bump the crate version --- CHANGELOG.md | 10 ++++++++++ Cargo.toml | 3 ++- 2 files changed, 12 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7445c6b..37ac018 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.7.0] - in development + +### Changed + +- Bumped `rand-core` to 0.9. ([#74]) + + +[#74]: https://github.com/entropyxyz/crypto-primes/pull/74 + + ## [0.6.1] - 2025-02-17 ### Added diff --git a/Cargo.toml b/Cargo.toml index 7a30b32..f179f45 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "crypto-primes" -version = "0.6.1" +version = "0.7.0-dev" edition = "2021" license = "Apache-2.0 OR MIT" description = "Random prime number generation and primality checking library" @@ -18,6 +18,7 @@ openssl = { version = "0.10.39", optional = true, features = ["vendored"] } rug = { version = "1.26", default-features = false, features = ["integer"], optional = true } glass_pumpkin = { version = "1", optional = true } rayon = { version = "1", optional = true } + [dev-dependencies] # need `crypto-bigint` with `alloc` to test `BoxedUint` crypto-bigint = { version = "0.7.0-pre", default-features = false, features = ["alloc"] }