From 3abf2ebe910e012d1158d42e8a6897483c78ff2f Mon Sep 17 00:00:00 2001 From: Michael Davis Date: Tue, 11 Mar 2025 17:26:17 -0400 Subject: [PATCH] Prepare a v0.3.1 release --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 868f54a..6b08ca8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [v0.3.1] - 2025-03-11 + +### Fixed + +* Fixed handling of Unicode flags which are represented by more than one code + unit in UTF-16 representation, for example emoji such as '🔭'. + ## [v0.3.0] - 2025-02-04 ### Added diff --git a/Cargo.lock b/Cargo.lock index 9686ce3..4158f1b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -54,7 +54,7 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92" [[package]] name = "spellbook" -version = "0.3.0" +version = "0.3.1" dependencies = [ "chardetng", "encoding_rs", diff --git a/Cargo.toml b/Cargo.toml index e1565cf..5cfee0b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "spellbook" -version = "0.3.0" +version = "0.3.1" authors = ["Michael Davis "] description = "A spellchecking library compatible with Hunspell dictionaries" readme = "README.md"