diff --git a/CHANGELOG.md b/CHANGELOG.md index 825a523..01596b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## v0.6.0 + +- Rewrite the modifier key match logic + - Match remaps even if extra modifiers are held [#102](https://github.com/k0kubun/xremap/issues/102) + - Even faster than the previous version + ## v0.5.3 - Match an `application` matcher against a full `WM_CLASS` in X11 diff --git a/Cargo.lock b/Cargo.lock index da13013..60d04b3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1112,7 +1112,7 @@ dependencies = [ [[package]] name = "xremap" -version = "0.5.3" +version = "0.6.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index e97cecf..62375b9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xremap" -version = "0.5.3" +version = "0.6.0" edition = "2021" description = "Dynamic key remapp for X and Wayland" license = "MIT"