diff --git a/CHANGELOG.md b/CHANGELOG.md index a1dd9ed..32fe345 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed - Renamed `Sieve` to `SmallPrimesSieve`. ([#64]) +- Bumped `crypto-bigint` to 0.6.0-rc.7 and MSRV to 1.83. ([#67]) +- Bumped `crypto-bigint` to 0.6. ([#68]) ### Added @@ -19,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [#60]: https://github.com/entropyxyz/crypto-primes/pull/60 [#64]: https://github.com/entropyxyz/crypto-primes/pull/64 +[#67]: https://github.com/entropyxyz/crypto-primes/pull/67 +[#68]: https://github.com/entropyxyz/crypto-primes/pull/68 ## [0.6.0-pre.2] - 2024-10-18 @@ -28,13 +32,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Bumped `crypto-bigint` to 0.6.0-rc.6 and MSRV to 1.81. ([#55]) - Switch to binary GCD for improved performance ([#54]) - Remove bit precision from the public API ([#46]) -- Bumped `crypto-bigint` to 0.6.0-rc.7 and MSRV to 1.83. ([#67]) [#55]: https://github.com/entropyxyz/crypto-primes/pull/55 [#54]: https://github.com/entropyxyz/crypto-primes/pull/54 [#46]: https://github.com/entropyxyz/crypto-primes/pull/46 -[#67]: https://github.com/entropyxyz/crypto-primes/pull/67 ## [0.6.0-pre.1] - 2024-10-03 diff --git a/Cargo.toml b/Cargo.toml index 7c47165..54605df 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ categories = ["cryptography", "no-std"] rust-version = "1.83" [dependencies] -crypto-bigint = { version = "0.6.0-rc.7", default-features = false, features = ["rand_core"] } +crypto-bigint = { version = "0.6", default-features = false, features = ["rand_core"] } rand_core = { version = "0.6.4", default-features = false } # Optional dependencies used in tests and benchmarks @@ -21,7 +21,7 @@ rayon = { version = "1", optional = true } [dev-dependencies] # need `crypto-bigint` with `alloc` to test `BoxedUint` -crypto-bigint = { version = "0.6.0-rc.7", default-features = false, features = ["alloc"] } +crypto-bigint = { version = "0.6", default-features = false, features = ["alloc"] } rand_chacha = "0.3" criterion = { version = "0.5", features = ["html_reports"] } num-modular = { version = "0.5", features = ["num-bigint"] }