From d6461425764aec10b9f919968eb70b6d13c72ea6 Mon Sep 17 00:00:00 2001 From: Jan Tache Date: Mon, 31 Jul 2023 09:02:41 -0700 Subject: [PATCH] ver: 1.4.0 --- Cargo.lock | 10 +++++++--- Cargo.toml | 10 +++++----- keyberon/Cargo.toml | 2 +- parser/Cargo.toml | 6 +++--- 4 files changed, 16 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 31a42347e..c7cb233ca 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -383,7 +383,7 @@ checksum = "453ad9f582a441959e5f0d088b02ce04cfe8d51a8eaf077f12ac6d3e94164ca6" [[package]] name = "kanata" -version = "1.4.0-prerelease-3" +version = "1.4.0" dependencies = [ "anyhow", "clap", @@ -425,7 +425,9 @@ dependencies = [ [[package]] name = "kanata-keyberon" -version = "0.19.0" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db3ba168f7f70812ae955bec71750b80677208c93a02495d32503b3e190ad47c" dependencies = [ "arraydeque", "heapless", @@ -444,7 +446,9 @@ dependencies = [ [[package]] name = "kanata-parser" -version = "0.19.0" +version = "0.20.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4a44c2ab3d2c5441c4bd03aa6a8a12e2a031e2d08027db08d1637deb10639d3" dependencies = [ "anyhow", "kanata-keyberon", diff --git a/Cargo.toml b/Cargo.toml index 5b2335a8a..e58a42852 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kanata" -version = "1.4.0-prerelease-3" +version = "1.4.0" authors = ["jtroo "] description = "Multi-layer keyboard customization" keywords = ["cli", "linux", "windows", "keyboard", "layout"] @@ -25,13 +25,13 @@ rustc-hash = "1.1.0" miette = { version = "5.7.0", features = ["fancy"] } dirs = "5.0.1" -# kanata-keyberon = "0.19.0" -# kanata-parser = "0.19.0" +kanata-keyberon = "0.20.0" +kanata-parser = "0.20.0" # Uncomment below and comment out above for testing local changes. # Otherwise any changes to the local files will not reflect in the compiled # binary. -kanata-keyberon = { path = "keyberon" } -kanata-parser = { path = "parser" } +# kanata-keyberon = { path = "keyberon" } +# kanata-parser = { path = "parser" } [target.'cfg(target_os = "linux")'.dependencies] evdev = "=0.12.0" diff --git a/keyberon/Cargo.toml b/keyberon/Cargo.toml index 8be288936..ccd438f3a 100644 --- a/keyberon/Cargo.toml +++ b/keyberon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kanata-keyberon" -version = "0.19.0" +version = "0.20.0" authors = ["Guillaume Pinot ", "Robin Krahl ", "jtroo "] edition = "2018" description = "Pure Rust keyboard firmware. Fork intended for use with kanata." diff --git a/parser/Cargo.toml b/parser/Cargo.toml index 3ef34f312..d863d4053 100644 --- a/parser/Cargo.toml +++ b/parser/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "kanata-parser" -version = "0.19.0" +version = "0.20.0" authors = ["jtroo "] description = "A parser for configuration language of kanata, a keyboard remapper." keywords = ["kanata", "parser"] @@ -20,11 +20,11 @@ rustc-hash = "1.1.0" miette = { version = "5.7.0", features = ["fancy"] } thiserror = "1.0.38" -# kanata-keyberon = "0.19.0" +kanata-keyberon = "0.20.0" # Uncomment below and comment out above for testing local changes. # Otherwise any changes to the local files will not reflect in the compiled # binary. -kanata-keyberon = { path = "../keyberon" } +# kanata-keyberon = { path = "../keyberon" } [features] cmd = []