From f7232da4e18ae44a1a8c1ae41a9b1fd4a57a221e Mon Sep 17 00:00:00 2001 From: Jeff Parsons Date: Tue, 19 Sep 2023 07:48:32 +1000 Subject: [PATCH] Update changelog and bump version number to 1.3.1 In preparation for release. --- CHANGELOG.md | 8 ++++++++ Cargo.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17976c7..0338195 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +### v1.3.1 (2023-09-19) + +- **Fixes**: + - Fix `PartialEq`, `PartialOrd`, and `Ord` implementations for `RangeMap` (and `RangeSet`). These previously only compared the starts of ranges instead of the entire range. Thanks to https://github.com/hecrj for finding and fixing this! +- **Changes**: + - Minimum supported Rust version for running this crate's tests has increased (I think to 1.59) due to a corresponding MSRV bump in a test dependency. This is causing CI builds to fail against rustc 1.56.1, but should not affect consumers of the crate. The next minor release (1.4.0) will bump the minimum supported Rust version of rangemap itself. + + ### v1.3.0 (2023-01-03) - **Features**: diff --git a/Cargo.toml b/Cargo.toml index 19b2c54..d254f84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rangemap" -version = "1.3.0" +version = "1.3.1" authors = ["Jeff Parsons "] edition = "2018" license = "MIT/Apache-2.0"