From beff0dd4d0fec6ab411b0f5756e31914fe4e8694 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Tue, 29 Mar 2022 15:45:07 -0700 Subject: [PATCH] Release 1.8.1 --- Cargo.toml | 2 +- RELEASES.rst | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 4f2b30d..e330b13 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "indexmap" edition = "2018" -version = "1.8.0" +version = "1.8.1" authors = [ "bluss", "Josh Stone " diff --git a/RELEASES.rst b/RELEASES.rst index c8657e3..402724a 100644 --- a/RELEASES.rst +++ b/RELEASES.rst @@ -1,3 +1,10 @@ +- 1.8.1 + + - The new ``IndexSet::replace_full`` will return the index of the item along + with the replaced value, if any, by @zakcutner in PR 222_. + +.. _222: https://github.com/bluss/indexmap/pull/222 + - 1.8.0 - The new ``IndexMap::into_keys`` and ``IndexMap::into_values`` will consume