Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ categories = ["algorithms", "science", "no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-num/num-integer"
name = "num-integer"
version = "0.1.45"
version = "0.1.46"
readme = "README.md"
exclude = ["/ci/*", "/.github/*"]
edition = "2018"
Expand Down
13 changes: 13 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# Release 0.1.46 (2024-02-07)

- [Upgrade to 2018 edition, **MSRV 1.31**][51]
- [The `Integer::divides` method is now properly deprecated][42],
rather than just documented so.
- [The new `Integer::dec` and `inc` methods change the value by one.][53]

**Contributors**: @aobatact, @cuviper, @hkBst, @MiguelX413

[42]: https://github.com/rust-num/num-integer/pull/42
[51]: https://github.com/rust-num/num-integer/pull/51
[53]: https://github.com/rust-num/num-integer/pull/53

# Release 0.1.45 (2022-04-29)

- [`Integer::next_multiple_of` and `prev_multiple_of` no longer overflow -1][45].
Expand Down