diff --git a/CHANGELOG.md b/CHANGELOG.md index 514a3e8..32b9b13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ ## [Unreleased] +## [3.1.0] 2025-01-29 +### Changed +- Added `or_insert`, `or_insert_with`, `or_insert_with_key` and `or_default` for better match the standard hashmap api + +### Fixed +- VacantEntry::insert after remove causes corrupted data + ## [3.0.1] 2025-01-12 ### Changed - Avoid re-hashing (twice!) in VacantEntry::insert diff --git a/Cargo.toml b/Cargo.toml index 261a575..8b9cb9a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "intmap" -version = "3.0.1" +version = "3.1.0" edition = "2021" rust-version = "1.58" description = "Specialized HashMap for integer keys"