From 47e1ca81537b19edef2e46025020e3cf7a6d0425 Mon Sep 17 00:00:00 2001 From: Bogdan Opanchuk Date: Thu, 28 Dec 2023 13:26:18 -0800 Subject: [PATCH] Update the changelog --- CHANGELOG.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c34723d..06125fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,11 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Bumped `crypto-bigint` to 0.6.0-pre.5. ([#38]) - Bumped MSRV to 1.73. (#[38]) -- `MillerRabin::new()` takes an `Odd`-wrapped integer by value. `random_odd_uint()` returns an `Odd`-wrapped integer. `LucasBase::generate()` takes an `Odd`-wrapped integer. `lucas_test` takes an `Odd`-wrapped integer. (#[38]) +- `MillerRabin::new()` takes an `Odd`-wrapped integer. `random_odd_uint()` is renamed to `random_odd_integer()`, takes a `NonZeroU32` for `bit_length`, and returns an `Odd`-wrapped integer. `LucasBase::generate()` takes an `Odd`-wrapped integer. `lucas_test` takes an `Odd`-wrapped integer. (#[38]) - All bit length-type parameters take `u32` instead of `usize`. (#[38]) +- All the API is based on the `Integer` trait instead of `Uint` specifically. (#[38]) -[#35]: https://github.com/entropyxyz/crypto-primes/pull/38 +[#36]: https://github.com/entropyxyz/crypto-primes/pull/36 +[#38]: https://github.com/entropyxyz/crypto-primes/pull/38 ## [0.5.0] - 2023-08-20