From 5d7bd5e6e3946678375ead7e72714162f3ad9a5e Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 29 Feb 2024 11:41:59 -0800 Subject: [PATCH] Release 2.2.5 --- Cargo.toml | 2 +- RELEASES.md | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 13a54dea..73ea6be5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "indexmap" edition = "2021" -version = "2.2.4" +version = "2.2.5" 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 6d874237..4e11c545 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,9 @@ # Releases +## 2.2.5 + +- Added optional `borsh` serialization support. + ## 2.2.4 - Added an `insert_sorted` method on `IndexMap`, `IndexSet`, and `VacantEntry`.