From cf4b8b2cbc4359520650b763242631d277f0e5e3 Mon Sep 17 00:00:00 2001 From: Brady Fomegne Date: Sat, 11 Nov 2023 18:09:05 +0100 Subject: [PATCH] chore: update crate version (#129) released V0.5.2 --- CHANGELOG.md | 5 +++++ engine/translator/Cargo.toml | 2 +- service/Cargo.toml | 4 ++-- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 138730d..4e1c124 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.5.2] - 2023-11-11 + +### Fixed +- Improve the translation system. [(#127)](https://github.com/pythonbrad/afrim/pull/127) + ## [0.5.1] - 2023-11-10 ### Fixed diff --git a/engine/translator/Cargo.toml b/engine/translator/Cargo.toml index 7d0af79..e7e8939 100644 --- a/engine/translator/Cargo.toml +++ b/engine/translator/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "afrim-translator" -version = "0.1.1" +version = "0.1.2" edition = "2021" description = "Manage the predication system of the afrim input method." keywords = ["auto-complete", "ime", "predication"] diff --git a/service/Cargo.toml b/service/Cargo.toml index e4dcd28..21e8d6b 100644 --- a/service/Cargo.toml +++ b/service/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "afrim" -version = "0.5.1" +version = "0.5.2" edition = "2021" description = "Core library of the afrim input method." keywords = ["ime", "keyboard"] @@ -27,7 +27,7 @@ clap = { version = "4.4.8", features = ["derive"] } enigo = "0.1.3" afrim-config = { version = "0.4.1", path = "../config", default-features = false } afrim-preprocessor = { version = "0.5.1", path = "../engine/preprocessor", default-features = false } -afrim-translator = { version = "0.1.1", path = "../engine/translator", default-features = false } +afrim-translator = { version = "0.1.2", path = "../engine/translator", default-features = false } rdev = "0.5.3" [dev-dependencies]