From b97aba6eebe1cea51e5cc603b84429bfea36ca0e Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Tue, 11 Feb 2025 15:52:42 +0100 Subject: [PATCH 1/3] write release notes for v0.19 --- RELEASE_NOTES.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index aa3ed29..bc25f86 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,27 @@ # Release Notes +## 0.19.0 - 2025/02/11 + +## Fixed + +- Fixed the `IntoIterator` impl that triggered a Rust compiler miscompilation in some versions. [#80] + - See the associated [`rustc` issue](https://github.com/rust-lang/rust/issues/136856). + +## Improvements + +- Updated and improved documentation about backend properties. [#83] [#84] +- Update outdated dependencies. [#82] + +## Internal + +- Improve and modernize GitHub Actions CI. [#81] + +[#80]: https://github.com/Robbepop/string-interner/pull/80 +[#81]: https://github.com/Robbepop/string-interner/pull/81 +[#82]: https://github.com/Robbepop/string-interner/pull/82 +[#83]: https://github.com/Robbepop/string-interner/pull/83 +[#84]: https://github.com/Robbepop/string-interner/pull/84 + ## 0.18.0 - 2024/11/12 ## Fixed From e1317e0c1be140211ae01c84a29df4a5289d9118 Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Tue, 11 Feb 2025 15:53:22 +0100 Subject: [PATCH 2/3] bump crate version to v0.19 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1ed5d54..27a3d7a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -443,7 +443,7 @@ dependencies = [ [[package]] name = "string-interner" -version = "0.18.0" +version = "0.19.0" dependencies = [ "criterion", "fxhash", diff --git a/Cargo.toml b/Cargo.toml index 80a4ccc..7ffcbb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "string-interner" -version = "0.18.0" +version = "0.19.0" authors = ["Robbepop"] license = "MIT/Apache-2.0" readme = "README.md" From 0e1f56cab80309782f965a5447acdfa6dfdf833c Mon Sep 17 00:00:00 2001 From: Robin Freyler Date: Tue, 11 Feb 2025 16:29:12 +0100 Subject: [PATCH 3/3] update release notes for v0.19 --- RELEASE_NOTES.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index bc25f86..2cfe6d7 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -11,6 +11,7 @@ - Updated and improved documentation about backend properties. [#83] [#84] - Update outdated dependencies. [#82] +- Added `serde::{Serialize,Deserialize}` impls for all crate defined symbol types. [#86] ## Internal @@ -21,6 +22,7 @@ [#82]: https://github.com/Robbepop/string-interner/pull/82 [#83]: https://github.com/Robbepop/string-interner/pull/83 [#84]: https://github.com/Robbepop/string-interner/pull/84 +[#86]: https://github.com/Robbepop/string-interner/pull/86 ## 0.18.0 - 2024/11/12