chore: bump version to 0.2.0 (fixes #16)#19
Merged
Alex-Wengg merged 2 commits intomainfrom Apr 26, 2026
Merged
Conversation
Closes #16. The published 0.1.0 on crates.io was cut from commit 699a68c (March 7, 2026) and predates ~49 commits of significant feature work, including: - pub fn tn_normalize_sentence + full TN (written -> spoken) support - Multi-language ITN for FR, DE, ES, HI, JA, ZH - Module rename from asr/tts to itn/tn - JavaScript-callable wasm bindings Users importing tn_normalize_sentence from crates.io 0.1.0 hit 'unresolved import' because the function only landed after 0.1.0 was published. Bumping to 0.2.0 (rather than 0.1.1) reflects the breadth of new public API surface added since the initial release.
Replaces the hardcoded "0.1.0\0" byte literal with a compile-time concatenation of CARGO_PKG_VERSION + null terminator. This keeps the C/Swift consumer view of the version in sync with Cargo.toml automatically, preventing future drift.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Closes #16 —
tn_normalize_sentence(and a lot of other public API) is missing from the published crate because crates.io still has 0.1.0, which was cut from commit699a68c(2026-03-07).Since then, ~49 commits of feature work have landed on
mainwithout a release, including:pub fn tn_normalize_sentence+ full TN (written → spoken) supportasr/ttstoitn/tnUsers running
cargo add text-processing-rsand trying to importtn_normalize_sentencehitunresolved importbecause that function only exists post-0.1.0.Changes
Cargo.tomlfrom0.1.0→0.2.0Cargo.lockto matchpackage.json(npm wasm package) to matchPicking
0.2.0over0.1.1because the breadth of new public surface (multi-language ITN, full TN API, wasm bindings) is well beyond a patch-level change.Follow-up needed
After merge, a maintainer needs to:
v0.2.0cargo publishnpm publishthe wasm packageTest plan
main: