diff --git a/CHANGELOG.md b/CHANGELOG.md index b3c59ff..9fd9bfb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## v0.3.0 + +* Switch the CLI framework from getopts to clap +* Add `--watch=config` to watch configs + * `--watch` works as before. You may use it as `--watch=device` as well. +* Add `--completions` for shell completion + ## v0.2.5 * Support `escape_next_key` action diff --git a/Cargo.lock b/Cargo.lock index 21d6418..b0f422e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1059,7 +1059,7 @@ dependencies = [ [[package]] name = "xremap" -version = "0.2.5" +version = "0.3.0" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index 745fbd3..76d98c7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xremap" -version = "0.2.5" +version = "0.3.0" edition = "2021" description = "Dynamic key remapp for X and Wayland" license = "MIT"