Skip to content

Commit c73cffc

Browse files
bors[bot]cuviper
andauthored
Merge #217
217: Release 0.4.1 r=cuviper a=cuviper Co-authored-by: Josh Stone <[email protected]>
2 parents 9ea4757 + ea5025e commit c73cffc

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

.github/workflows/ci.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ jobs:
8989
- name: Rust install
9090
uses: actions-rs/toolchain@v1
9191
with:
92-
toolchain: 1.42.0
92+
toolchain: 1.54.0
9393
profile: minimal
9494
override: true
9595
components: rustfmt

.github/workflows/pr.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
- name: Rust install
3434
uses: actions-rs/toolchain@v1
3535
with:
36-
toolchain: 1.42.0
36+
toolchain: 1.54.0
3737
profile: minimal
3838
override: true
3939
components: rustfmt

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ categories = [ "algorithms", "data-structures", "science" ]
88
license = "MIT OR Apache-2.0"
99
name = "num-bigint"
1010
repository = "https://github.com/rust-num/num-bigint"
11-
version = "0.4.0"
11+
version = "0.4.1"
1212
readme = "README.md"
1313
build = "build.rs"
1414
exclude = ["/bors.toml", "/ci/*", "/.github/*"]

RELEASES.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
# Release 0.4.1 (2021-08-27)
2+
3+
- [Fixed scalar divide-by-zero panics.][200]
4+
- [Implemented `DoubleEndedIterator` for `U32Digits` and `U64Digits`.][208]
5+
- [Optimized multiplication to avoid unnecessary allocations.][199]
6+
- [Optimized string formatting for very large values.][216]
7+
8+
**Contributors**: @cuviper, @PatrickNorton
9+
10+
[199]: https://github.com/rust-num/num-bigint/pull/199
11+
[200]: https://github.com/rust-num/num-bigint/pull/200
12+
[208]: https://github.com/rust-num/num-bigint/pull/208
13+
[216]: https://github.com/rust-num/num-bigint/pull/216
14+
115
# Release 0.4.0 (2021-03-05)
216

317
### Breaking Changes

0 commit comments

Comments
 (0)