diff --git a/Cargo.toml b/Cargo.toml index 519f637..9af0bea 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "string-interner" -version = "0.15.0" +version = "0.16.0" authors = ["Robbepop"] license = "MIT/Apache-2.0" readme = "README.md" diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 0eb9d1f..1e21c1d 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,5 +1,23 @@ # Release Notes +## 0.16.0 - 2024/05/01 + +## Added + +- Added `StringInterner::iter` method. (https://github.com/Robbepop/string-interner/pull/65) + +## Changed + +- Optimized `BufferBackend::{resolve, iter}` methods. (https://github.com/Robbepop/string-interner/pull/64) + +## Fixed + +- Fixed unsoundness issue in `BucketBackend`. (https://github.com/Robbepop/string-interner/pull/66) + +## Removed + +- Removed `SimpleBackend` since it served no real purpose. (https://github.com/Robbepop/string-interner/commit/549db6c2efeac5acb5e8084e69fa22891ae14019) + ## 0.15.0 - 2024/02/08 ## Changed