From 7ed57221ff884230c1484d7cdab025414b2eaad9 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 8 Jan 2026 09:29:05 -0800 Subject: [PATCH] Release 0.2.3 --- Cargo.toml | 2 +- RELEASES.md | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 643f4f0..6e64370 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ringmap" edition = "2021" -version = "0.2.2" +version = "0.2.3" documentation = "https://docs.rs/ringmap/" repository = "https://github.com/indexmap-rs/ringmap" license = "Apache-2.0 OR MIT" diff --git a/RELEASES.md b/RELEASES.md index ac8d6af..6347800 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -1,5 +1,10 @@ # Releases +## 0.2.3 (2026-01-08) + +- Added `RingMap::get_range`, `get_range_mut`, `range`, and `range_mut`. +- Added `RingSet::get_range` and `range`. + ## 0.2.2 (2026-01-07) - Added `map::Slice::split_at_checked` and `split_at_mut_checked`.