From 8c8630d01ca757b8d95c0e4120652a8fb650516c Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Thu, 30 Apr 2026 13:47:52 +0200 Subject: [PATCH 1/2] add changelog for v0.20 --- RELEASE_NOTES.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 2cfe6d7..690d091 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,25 @@ # Release Notes +## 0.20.0 - 2026/04/30 + +### Fixed + +- Fixed off-by-one bug in `serde` support. [#91] + +### Improvements + +- Improve documentation about custom hashing. [#90] +- Add notification about `unchecked` resolution for `BufferBackend`. [#92] +- Updated dependencies. [#100] [#101] +- Specify Rust MSRV to be 1.65. [#101] + +[#90]: https://github.com/Robbepop/string-interner/pull/90 +[#91]: https://github.com/Robbepop/string-interner/pull/91 +[#92]: https://github.com/Robbepop/string-interner/pull/92 +[#96]: https://github.com/Robbepop/string-interner/pull/96 +[#100]: https://github.com/Robbepop/string-interner/pull/100 +[#101]: https://github.com/Robbepop/string-interner/pull/101 + ## 0.19.0 - 2025/02/11 ## Fixed From 44f943fc03b3ac151a49fc835a62a226b5b4a83a Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Thu, 30 Apr 2026 13:48:30 +0200 Subject: [PATCH 2/2] bump crate version --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 974656e..f5e1ee0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -446,7 +446,7 @@ checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" [[package]] name = "string-interner" -version = "0.19.0" +version = "0.20.0" dependencies = [ "criterion", "hashbrown", diff --git a/Cargo.toml b/Cargo.toml index c5c991a..371a8e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "string-interner" -version = "0.19.0" +version = "0.20.0" authors = ["Robbepop"] license = "MIT/Apache-2.0" readme = "README.md"