From ea5025efc8ec5a83da39a9f701e6ee48bfe236f3 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Fri, 27 Aug 2021 18:00:01 -0700 Subject: [PATCH] Release 0.4.1 --- .github/workflows/ci.yaml | 2 +- .github/workflows/pr.yaml | 2 +- Cargo.toml | 2 +- RELEASES.md | 14 ++++++++++++++ 4 files changed, 17 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index a77373f6..28433681 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -89,7 +89,7 @@ jobs: - name: Rust install uses: actions-rs/toolchain@v1 with: - toolchain: 1.42.0 + toolchain: 1.54.0 profile: minimal override: true components: rustfmt diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index 8641b5ab..f1ff1b4d 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -33,7 +33,7 @@ jobs: - name: Rust install uses: actions-rs/toolchain@v1 with: - toolchain: 1.42.0 + toolchain: 1.54.0 profile: minimal override: true components: rustfmt diff --git a/Cargo.toml b/Cargo.toml index 3de8c72c..26b0f6d8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ categories = [ "algorithms", "data-structures", "science" ] license = "MIT OR Apache-2.0" name = "num-bigint" repository = "https://github.com/rust-num/num-bigint" -version = "0.4.0" +version = "0.4.1" readme = "README.md" build = "build.rs" exclude = ["/bors.toml", "/ci/*", "/.github/*"] diff --git a/RELEASES.md b/RELEASES.md index fd07b1ec..d6469a35 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,3 +1,17 @@ +# Release 0.4.1 (2021-08-27) + +- [Fixed scalar divide-by-zero panics.][200] +- [Implemented `DoubleEndedIterator` for `U32Digits` and `U64Digits`.][208] +- [Optimized multiplication to avoid unnecessary allocations.][199] +- [Optimized string formatting for very large values.][216] + +**Contributors**: @cuviper, @PatrickNorton + +[199]: https://github.com/rust-num/num-bigint/pull/199 +[200]: https://github.com/rust-num/num-bigint/pull/200 +[208]: https://github.com/rust-num/num-bigint/pull/208 +[216]: https://github.com/rust-num/num-bigint/pull/216 + # Release 0.4.0 (2021-03-05) ### Breaking Changes