From 0cd5aefb4434fb495cb87ba5de50870d331558fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Beno=C3=AEt=20du=20Garreau?= Date: Tue, 16 Sep 2025 16:02:35 +0200 Subject: [PATCH 1/3] Update `hashbrown` to 0.16 --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index a938102e..5d9ed831 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ sval = { version = "2", optional = true, default-features = false } borsh = { version = "1.2", optional = true, default-features = false } [dependencies.hashbrown] -version = "0.15.0" +version = "0.16.0" default-features = false # serde v1.0.220 is the first version that released with `serde_core`. From a7da8f181e81f8a37bc46936bf2d1d6db14edddc Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 18 Sep 2025 09:40:52 -0700 Subject: [PATCH 2/3] Use a range for hashbrown --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 5d9ed831..89868d00 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -26,7 +26,7 @@ sval = { version = "2", optional = true, default-features = false } borsh = { version = "1.2", optional = true, default-features = false } [dependencies.hashbrown] -version = "0.16.0" +version = ">= 0.15.0, < 0.17.0" default-features = false # serde v1.0.220 is the first version that released with `serde_core`. From ee6080d480eea3b738757c6bff1bb21b440f3849 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 18 Sep 2025 09:51:00 -0700 Subject: [PATCH 3/3] Release 2.11.4 --- Cargo.toml | 2 +- RELEASES.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 89868d00..241127ce 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "indexmap" edition = "2021" -version = "2.11.3" +version = "2.11.4" documentation = "https://docs.rs/indexmap/" repository = "https://github.com/indexmap-rs/indexmap" license = "Apache-2.0 OR MIT" diff --git a/RELEASES.md b/RELEASES.md index f1c675ae..6df2a7c4 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,9 @@ # Releases +## 2.11.4 (2025-09-18) + +- Updated the `hashbrown` dependency to a range allowing 0.15 or 0.16. + ## 2.11.3 (2025-09-15) - Make the minimum `serde` version only apply when "serde" is enabled.