Skip to content

Commit

Permalink
Update changelog and bump version number to 1.3.1
Browse files Browse the repository at this point in the history
In preparation for release.
  • Loading branch information
jeffparsons committed Sep 18, 2023
1 parent ca38f2c commit f7232da
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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**:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rangemap"
version = "1.3.0"
version = "1.3.1"
authors = ["Jeff Parsons <[email protected]>"]
edition = "2018"
license = "MIT/Apache-2.0"
Expand Down

0 comments on commit f7232da

Please sign in to comment.