From 6c69b04dafac101e5d8ca45ea9a4ccded1e96fac Mon Sep 17 00:00:00 2001 From: Takashi Kokubun Date: Sun, 14 Aug 2022 02:10:45 -0700 Subject: [PATCH] Version 0.6.0 --- CHANGELOG.md | 6 ++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) 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"