From 24b802866f0c577b1c2c90aab7fd97db1cba62bf Mon Sep 17 00:00:00 2001 From: Jerome Froelich Date: Wed, 31 Jul 2024 22:05:15 -0400 Subject: [PATCH] Prepare 0.3.6 release --- CHANGELOG.md | 4 ++++ Cargo.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e114618..911a657 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [v0.3.6](https://github.com/jeromefroe/hashring-rs/tree/0.3.6) - 2024-07-31 + +- Remove `Clone` trait bound from `IntoIterator` implementation. + ## [v0.3.5](https://github.com/jeromefroe/hashring-rs/tree/0.3.5) - 2024-05-24 - Derive `PartialEq` and `Debug` traits on `HashRing`. diff --git a/Cargo.toml b/Cargo.toml index ad9329a..cef983e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "hashring" -version = "0.3.5" +version = "0.3.6" authors = ["Jerome Froelich "] description = "A minimal implementation of consistent hashing" homepage = "https://github.com/jeromefroe/hashring-rs"