From 07c468f781363d88c56365f7e89ee5c3d17b4557 Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Tue, 12 Nov 2024 23:56:34 +0100 Subject: [PATCH] Prepare release of `string-interner` v0.18.0 (#74) * bump crate version * write changelog for v0.18.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- RELEASE_NOTES.md | 20 ++++++++++++++++++++ 3 files changed, 22 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ee8f617..5fc2cfd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -436,7 +436,7 @@ dependencies = [ [[package]] name = "string-interner" -version = "0.17.0" +version = "0.18.0" dependencies = [ "criterion", "fxhash", diff --git a/Cargo.toml b/Cargo.toml index 88a8a16..80a4ccc 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "string-interner" -version = "0.17.0" +version = "0.18.0" authors = ["Robbepop"] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 9cdb41c..aa3ed29 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,25 @@ # Release Notes +## 0.18.0 - 2024/11/12 + +## Fixed + +- The `serde` crate feature is no longer enabled via `std` crate feature. [#73] + +## Removed + +- Removed the unused `cfg-if` dependency. [#73] + +## Changed + +- Updated `hashbrown` dependency to `0.15.1`. [#73] + +## Internal + +- Fixed many `clippy` and `formatting` issues. [#73] + +[#73]: https://github.com/Robbepop/string-interner/pull/73 + ## 0.17.0 - 2024/05/01 ## Added