diff --git a/CHANGELOG.md b/CHANGELOG.md index 8f669b1c..364f68b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ Also check [python changelog](python/CHANGELOG.md). ## [Unreleased] +## [0.6.10](https://github.com/WorksApplications/sudachi.rs/releases/tag/v0.6.10) (2025-01-10) + +### Other + +- Introduce cibuildwheel to build workflow (#295) + ## [0.6.9](https://github.com/WorksApplications/sudachi.rs/releases/tag/v0.6.9) (2024-11-20) ### Added diff --git a/README.ja.md b/README.ja.md index 295b6a1e..6363a095 100644 --- a/README.ja.md +++ b/README.ja.md @@ -4,14 +4,16 @@ sudachi.rs は日本語形態素解析器 [Sudachi](https://github.com/WorksApplications/Sudachi) の Rust 実装です。 -[English README](README.md), [SudachiPy Documentation](./python/README.md) +[English README](README.md)。 + +Python 版についてはこちらを参照してください: [SudachiPy Documentation](./python/README.md)。 ## TL;DR Python 版のインストール: ```bash -pip install --upgrade 'sudachipy>=0.6.9' +pip install --upgrade 'sudachipy>=0.6.10' ``` Rust 版のインストール: diff --git a/README.md b/README.md index 0bf53ec5..fc17bfeb 100644 --- a/README.md +++ b/README.md @@ -6,14 +6,16 @@ sudachi.rs is a Rust implementation of [Sudachi](https://github.com/WorksApplications/Sudachi), a Japanese morphological analyzer. -[日本語 README](README.ja.md), [SudachiPy Documentation](./python/README.md) +[日本語 README](README.ja.md). + +Python implementation is also available: [SudachiPy Documentation](./python/README.md). ## TL;DR Install Python version ```bash -pip install --upgrade 'sudachipy>=0.6.9' +pip install --upgrade 'sudachipy>=0.6.10' ``` or Rust version diff --git a/python/CHANGELOG.md b/python/CHANGELOG.md index c15de255..2ce6927b 100644 --- a/python/CHANGELOG.md +++ b/python/CHANGELOG.md @@ -6,6 +6,21 @@ Also check [rust changelog](../CHANGELOG.md). ## [Unreleased] +## [0.6.10](https://github.com/WorksApplications/sudachi.rs/releases/tag/v0.6.10) (2025-01-10) + +- Add support for py3.13t (free thread) (#293, #295) + - wheels are provided only for linux-amd64 and macos + +### Fixed + +- Fix broken sdist (#294) +- Fix dictionary `__repr__` (#282) + +### Changed + +- Update PyO3 to v0.23 (#284) +- Code refactorings: pyprojector (#283) + ## [0.6.9](https://github.com/WorksApplications/sudachi.rs/releases/tag/v0.6.9) (2024-11-20) ### Added