Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.1.46 #62

Merged
merged 1 commit into from
Feb 8, 2024
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.
Jump to
Jump to file
Failed to load files.
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