Skip to content

Commit

Permalink
chore: update crate version
Browse files Browse the repository at this point in the history
released V0.5.1
  • Loading branch information
pythonbrad committed Nov 9, 2023
1 parent e3f9b6b commit 4c604e3
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.5.1] - 2023-11-10

### Fixed
- Fixed autocompletion in inhibit mode. [(#122)](https://github.com/pythonbrad/afrim/pull/122)

### Added
- Support for wasm (limited to the core). [(#120)](https://github.com/pythonbrad/afrim/pull/120)

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion engine/preprocessor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "afrim-preprocessor"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "A preprocessor to process keyboard events for an input method."
keywords = ["ime", "processor", "keyboard"]
Expand Down
2 changes: 1 addition & 1 deletion engine/translator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "afrim-translator"
version = "0.1.0"
version = "0.1.1"
edition = "2021"
description = "Manage the predication system of the afrim input method."
keywords = ["auto-complete", "ime", "predication"]
Expand Down
6 changes: 3 additions & 3 deletions service/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "afrim"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "Core library of the afrim input method."
keywords = ["ime", "keyboard"]
Expand All @@ -26,8 +26,8 @@ inhibit = ["afrim-preprocessor/inhibit"]
clap = { version = "4.4.6", features = ["derive"] }
enigo = "0.1.3"
afrim-config = { version = "0.4.1", path = "../config", default-features = false }
afrim-preprocessor = { version = "0.5.0", path = "../engine/preprocessor", default-features = false }
afrim-translator = { version = "0.1.0", path = "../engine/translator", 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 }
rdev = "0.5.3"

[dev-dependencies]
Expand Down

0 comments on commit 4c604e3

Please sign in to comment.