From 8a9218affa38a222a3abdf961432805b6ea3afea Mon Sep 17 00:00:00 2001 From: Bogdan Opanchuk Date: Fri, 29 Dec 2023 11:35:38 -0800 Subject: [PATCH] Fix the mess in the changelog from #36 and #38 --- CHANGELOG.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2692ff7..89edf91 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,10 +8,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Bumped `crypto-bigint` to 0.6.0-pre.6. ([#38]) -- Bumped MSRV to 1.73. (#[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]) +- Bumped `crypto-bigint` to 0.6.0-pre.6. ([#36]) +- Bumped MSRV to 1.73. (#[36]) +- `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. (#[36]) +- `random_odd_uint()` is renamed to `random_odd_integer()`, takes a `NonZeroU32` for `bit_length`. (#[38]) +- All bit length-type parameters take `u32` instead of `usize`. (#[36]) - All the API is based on the `Integer` trait instead of `Uint` specifically. (#[38])