diff --git a/CHANGELOG.md b/CHANGELOG.md index 0bafa3f..3a3a361 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ Items marked with ⚠️ are breaking changes. +## v2.0.0 - 2024-08-07 + +### Added + +- Implemented the traits `Send`, `Sync`, and `Unpin` for `(Dec)Interval`. + +### Changed + +- ⚠️ Renamed `(Dec)Interval::round_ties_to_even` to `(DecInterval)::round_ties_even`. + ## v1.1.0 - 2023-04-02 ### Added @@ -75,7 +85,7 @@ The crate requires a nightly toolchain >= `nightly-2021-10-05`. ### Added -- Implemented the trait `Hash` for `Interval`, `Decoration` and `Overlap`. +- Implemented the trait `Hash` for `Interval`, `Decoration`, and `Overlap`. ### Removed diff --git a/Cargo.toml b/Cargo.toml index b1492cc..216cc07 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "inari" -version = "1.1.0" +version = "2.0.0" authors = ["Masashi Mizuno"] edition = "2021" rust-version = "1.65.0"