Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
24 changes: 24 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# 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]
- Added `serde::{Serialize,Deserialize}` impls for all crate defined symbol types. [#86]

## 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
[#86]: https://github.com/Robbepop/string-interner/pull/86

## 0.18.0 - 2024/11/12

## Fixed
Expand Down