From 0fc75afb00f852ca9f0027a6785c8d750584fc1e Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Tue, 9 Apr 2024 17:57:41 -0700 Subject: [PATCH] chore(release): v0.1.24 --- Cargo.lock | 26 +++++++++++++------------- README.md | 2 +- docs/komorebi.example.json | 2 +- komorebi-client/Cargo.toml | 2 +- komorebi-core/Cargo.toml | 2 +- komorebi/Cargo.toml | 2 +- komorebic-no-console/Cargo.toml | 2 +- komorebic/Cargo.toml | 2 +- 8 files changed, 20 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 32c4ff2d..0ad89158 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -130,9 +130,9 @@ checksum = "cf4b9d6a944f767f8e5e0db018570623c85f3d925ac718db4e06d0187adb21c1" [[package]] name = "bumpalo" -version = "3.15.4" +version = "3.16.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7ff69b9dd49fd426c69a0db9fc04dd934cdb6645ff000864d98f7e2af8830eaa" +checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c" [[package]] name = "bytes" @@ -142,9 +142,9 @@ checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9" [[package]] name = "cc" -version = "1.0.91" +version = "1.0.92" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1fd97381a8cc6493395a5afc4c691c1084b3768db713b73aa215217aa245d153" +checksum = "2678b2e3449475e95b0aa6f9b506a28e61b3dc8996592b983695e8ebb58a8b41" [[package]] name = "cfg-if" @@ -523,9 +523,9 @@ dependencies = [ [[package]] name = "getrandom" -version = "0.2.13" +version = "0.2.14" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a06fddc2749e0528d2813f95e050e87e52c8cbbae56223b9babf73b3e53b0cc6" +checksum = "94b22e06ecb0110981051723910cbf0b5f5e09a2062dd7663334ee79a9d1286c" dependencies = [ "cfg-if 1.0.0", "libc", @@ -795,7 +795,7 @@ dependencies = [ [[package]] name = "komorebi" -version = "0.1.24-dev.0" +version = "0.1.24" dependencies = [ "bitflags 2.5.0", "clap", @@ -836,7 +836,7 @@ dependencies = [ [[package]] name = "komorebi-client" -version = "0.1.24-dev.0" +version = "0.1.24" dependencies = [ "komorebi", "komorebi-core", @@ -846,7 +846,7 @@ dependencies = [ [[package]] name = "komorebi-core" -version = "0.1.24-dev.0" +version = "0.1.24" dependencies = [ "clap", "color-eyre", @@ -862,7 +862,7 @@ dependencies = [ [[package]] name = "komorebic" -version = "0.1.24-dev.0" +version = "0.1.24" dependencies = [ "clap", "color-eyre", @@ -889,7 +889,7 @@ dependencies = [ [[package]] name = "komorebic-no-console" -version = "0.1.24-dev.0" +version = "0.1.24" [[package]] name = "kqueue" @@ -1875,9 +1875,9 @@ checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160" [[package]] name = "sysinfo" -version = "0.30.8" +version = "0.30.9" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4b1a378e48fb3ce3a5cf04359c456c9c98ff689bcf1c1bc6e6a31f247686f275" +checksum = "e9a84fe4cfc513b41cb2596b624e561ec9e7e1c4b46328e496ed56a53514ef2a" dependencies = [ "cfg-if 1.0.0", "core-foundation-sys", diff --git a/README.md b/README.md index 23be6e06..a27d6c9b 100644 --- a/README.md +++ b/README.md @@ -324,7 +324,7 @@ every `WindowManagerEvent` and `SocketMessage` handled by `komorebi` in a Rust c Below is a simple example of how to use `komorebi-client` in a basic Rust application. ```rust -// komorebi-client = { git = "https://github.com/LGUG2Z/komorebi", tag = "v0.1.23"} +// komorebi-client = { git = "https://github.com/LGUG2Z/komorebi", tag = "v0.1.24"} use anyhow::Result; use komorebi_client::Notification; diff --git a/docs/komorebi.example.json b/docs/komorebi.example.json index cc11e2c8..956292d6 100644 --- a/docs/komorebi.example.json +++ b/docs/komorebi.example.json @@ -1,5 +1,5 @@ { - "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.23/schema.json", + "$schema": "https://raw.githubusercontent.com/LGUG2Z/komorebi/v0.1.24/schema.json", "app_specific_configuration_path": "$Env:USERPROFILE/applications.yaml", "window_hiding_behaviour": "Cloak", "cross_monitor_move_behaviour": "Insert", diff --git a/komorebi-client/Cargo.toml b/komorebi-client/Cargo.toml index 915b191b..9303464a 100644 --- a/komorebi-client/Cargo.toml +++ b/komorebi-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-client" -version = "0.1.24-dev.0" +version = "0.1.24" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/komorebi-core/Cargo.toml b/komorebi-core/Cargo.toml index 29ee293e..e86adbdf 100644 --- a/komorebi-core/Cargo.toml +++ b/komorebi-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-core" -version = "0.1.24-dev.0" +version = "0.1.24" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/komorebi/Cargo.toml b/komorebi/Cargo.toml index 9bcb5853..7dfb5b2c 100644 --- a/komorebi/Cargo.toml +++ b/komorebi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi" -version = "0.1.24-dev.0" +version = "0.1.24" authors = ["Jade Iqbal "] description = "A tiling window manager for Windows" categories = ["tiling-window-manager", "windows"] diff --git a/komorebic-no-console/Cargo.toml b/komorebic-no-console/Cargo.toml index f0c218b6..b8afef9d 100644 --- a/komorebic-no-console/Cargo.toml +++ b/komorebic-no-console/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebic-no-console" -version = "0.1.24-dev.0" +version = "0.1.24" authors = ["Jade Iqbal "] description = "The command-line interface (without a console) for Komorebi, a tiling window manager for Windows" categories = ["cli", "tiling-window-manager", "windows"] diff --git a/komorebic/Cargo.toml b/komorebic/Cargo.toml index 2e578475..22c43b0f 100644 --- a/komorebic/Cargo.toml +++ b/komorebic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebic" -version = "0.1.24-dev.0" +version = "0.1.24" authors = ["Jade Iqbal "] description = "The command-line interface for Komorebi, a tiling window manager for Windows" categories = ["cli", "tiling-window-manager", "windows"]