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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ This project follows [Semantic Versioning](https://semver.org/).

## [Unreleased]

## [0.3.0] - 2026-08-07

### Breaking
- Renamed the crate from `spellbound` to `spellkit`

### Changed
- Document locale and threading caveats in the README
- Drop obsolete `unexpected_cfgs` lint (no longer needed after objc2)
Expand Down
80 changes: 47 additions & 33 deletions Cargo.lock

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

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "spellbound"
name = "spellkit"
description = "Bindings to your friendly neighborhood spellchecker."
keywords = ["spellcheck", "spellchecker", "hunspell"]
categories = ["os", "text-processing"]
documentation = "https://docs.rs/spellbound"
repository = "https://github.com/rtmongold/spellbound"
version = "0.2.1"
documentation = "https://docs.rs/spellkit"
repository = "https://github.com/rtmongold/spellkit"
version = "0.3.0"
authors = [
"Andy Russell <arussell123@gmail.com>",
"Robert Mongold <rtmongold@gmail.com>"
Expand Down
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# spellbound
# spellkit

[![CI](https://github.com/rtmongold/spellbound/actions/workflows/ci.yml/badge.svg)](https://github.com/rtmongold/spellbound/actions/workflows/ci.yml)
[![CI](https://github.com/rtmongold/spellkit/actions/workflows/ci.yml/badge.svg)](https://github.com/rtmongold/spellkit/actions/workflows/ci.yml)

Native spell checking with a small Rust API.

This is a **maintained fork** of [euclio/spellbound](https://github.com/euclio/spellbound)
This project is **based on** [euclio/spellbound](https://github.com/euclio/spellbound)
(last upstream commit 2020).

| Platform | API |
Expand All @@ -20,9 +20,9 @@ This is a **maintained fork** of [euclio/spellbound](https://github.com/euclio/s
## Example

```rust
use spellbound::Checker;
use spellkit::Checker;

fn main() -> Result<(), spellbound::Error> {
fn main() -> Result<(), spellkit::Error> {
let checker = Checker::new()?;
// Or: Checker::with_locale("en-US")?;

Expand Down Expand Up @@ -62,4 +62,4 @@ MIT OR Apache-2.0

## Credits

Originally by [Andy Russell](https://github.com/euclio). Maintained in this fork by Robert Mongold.
Originally by [Andy Russell](https://github.com/euclio). Maintained as `spellkit` by Robert Mongold.
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
//! `spellbound` is a small crate that binds to the native platform's spell checking APIs and
//! `spellkit` is a small crate that binds to the native platform's spell checking APIs and
//! provides a friendlier API.
//!
//! This corresponds to [`ISpellChecker`] on Windows, [`NSSpellChecker`] on MacOS, and [`hunspell`]
Expand All @@ -7,7 +7,7 @@
//! # Example
//!
//! ```
//! use spellbound::Checker;
//! use spellkit::Checker;
//!
//! let mut checker = Checker::new().unwrap();
//!
Expand Down
4 changes: 1 addition & 3 deletions src/main.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
extern crate spellbound;

use std::env;

use spellbound::Checker;
use spellkit::Checker;

fn main() {
let text = env::args().skip(1).collect::<Vec<String>>().join(" ");
Expand Down
Loading