Prepare a v0.3.0 release

This commit is contained in:
Michael Davis
2025-02-04 13:30:23 -05:00
parent 10f0feb5b8
commit c24f0e4d26
3 changed files with 15 additions and 2 deletions

View File

@@ -7,6 +7,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- ## [Unreleased] -->
## [v0.3.0] - 2025-02-04
### Added
* Exposed the `Checker` type.
* Added `Checker::check_lower_as_title` and `Checker::check_lower_as_upper` to
configure the checker to try lowercase words as title and/or uppercase.
### Changed
* The `default-hasher` feature flag now uses [`foldhash`](https://github.com/orlp/foldhash)
instead of [`ahash`](https://github.com/tkaitchuck/aHash).
## [v0.2.0] - 2024-11-18
### Added

2
Cargo.lock generated
View File

@@ -54,7 +54,7 @@ checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
[[package]]
name = "spellbook"
version = "0.2.0"
version = "0.3.0"
dependencies = [
"chardetng",
"encoding_rs",

View File

@@ -1,6 +1,6 @@
[package]
name = "spellbook"
version = "0.2.0"
version = "0.3.0"
authors = ["Michael Davis <mcarsondavis@gmail.com>"]
description = "A spellchecking library compatible with Hunspell dictionaries"
readme = "README.md"