From 6c07863b81d86fe5e2d4349495f572c5216a07d8 Mon Sep 17 00:00:00 2001 From: LGUG2Z Date: Sat, 14 Dec 2024 08:53:42 -0800 Subject: [PATCH] chore(dev): begin v0.1.32-dev --- Cargo.lock | 14 +++++++------- komorebi-bar/Cargo.toml | 2 +- komorebi-bar/src/config.rs | 2 +- komorebi-client/Cargo.toml | 2 +- komorebi-gui/Cargo.toml | 2 +- komorebi-themes/Cargo.toml | 2 +- komorebi/Cargo.toml | 2 +- komorebi/src/static_config.rs | 2 +- komorebic-no-console/Cargo.toml | 2 +- komorebic/Cargo.toml | 2 +- 10 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 49d6d2b5..0fff4f0e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2665,7 +2665,7 @@ checksum = "e2db585e1d738fc771bf08a151420d3ed193d9d895a36df7f6f8a9456b911ddc" [[package]] name = "komorebi" -version = "0.1.31" +version = "0.1.32" dependencies = [ "bitflags 2.6.0", "clap", @@ -2710,7 +2710,7 @@ dependencies = [ [[package]] name = "komorebi-bar" -version = "0.1.31" +version = "0.1.32" dependencies = [ "chrono", "clap", @@ -2743,7 +2743,7 @@ dependencies = [ [[package]] name = "komorebi-client" -version = "0.1.31" +version = "0.1.32" dependencies = [ "komorebi", "serde_json_lenient", @@ -2752,7 +2752,7 @@ dependencies = [ [[package]] name = "komorebi-gui" -version = "0.1.31" +version = "0.1.32" dependencies = [ "eframe", "egui_extras", @@ -2764,7 +2764,7 @@ dependencies = [ [[package]] name = "komorebi-themes" -version = "0.1.31" +version = "0.1.32" dependencies = [ "base16-egui-themes", "catppuccin-egui", @@ -2777,7 +2777,7 @@ dependencies = [ [[package]] name = "komorebic" -version = "0.1.31" +version = "0.1.32" dependencies = [ "chrono", "clap", @@ -2806,7 +2806,7 @@ dependencies = [ [[package]] name = "komorebic-no-console" -version = "0.1.31" +version = "0.1.32" [[package]] name = "kqueue" diff --git a/komorebi-bar/Cargo.toml b/komorebi-bar/Cargo.toml index 60acc6bb..bc67e917 100644 --- a/komorebi-bar/Cargo.toml +++ b/komorebi-bar/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-bar" -version = "0.1.31" +version = "0.1.32" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/komorebi-bar/src/config.rs b/komorebi-bar/src/config.rs index 74838fb4..2221a8bc 100644 --- a/komorebi-bar/src/config.rs +++ b/komorebi-bar/src/config.rs @@ -12,7 +12,7 @@ use std::collections::HashMap; use std::path::PathBuf; #[derive(Clone, Debug, Serialize, Deserialize, JsonSchema)] -/// The `komorebi.bar.json` configuration file reference for `v0.1.31` +/// The `komorebi.bar.json` configuration file reference for `v0.1.32` pub struct KomobarConfig { /// Bar positioning options #[serde(alias = "viewport")] diff --git a/komorebi-client/Cargo.toml b/komorebi-client/Cargo.toml index ec4dec0f..d8838a22 100644 --- a/komorebi-client/Cargo.toml +++ b/komorebi-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-client" -version = "0.1.31" +version = "0.1.32" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/komorebi-gui/Cargo.toml b/komorebi-gui/Cargo.toml index fa67de9b..6dba57ac 100644 --- a/komorebi-gui/Cargo.toml +++ b/komorebi-gui/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-gui" -version = "0.1.31" +version = "0.1.32" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/komorebi-themes/Cargo.toml b/komorebi-themes/Cargo.toml index 5a167546..79d2ecc7 100644 --- a/komorebi-themes/Cargo.toml +++ b/komorebi-themes/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi-themes" -version = "0.1.31" +version = "0.1.32" edition = "2021" [dependencies] diff --git a/komorebi/Cargo.toml b/komorebi/Cargo.toml index d455455d..859fdbaf 100644 --- a/komorebi/Cargo.toml +++ b/komorebi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebi" -version = "0.1.31" +version = "0.1.32" description = "A tiling window manager for Windows" categories = ["tiling-window-manager", "windows"] repository = "https://github.com/LGUG2Z/komorebi" diff --git a/komorebi/src/static_config.rs b/komorebi/src/static_config.rs index 533037a7..80dd190e 100644 --- a/komorebi/src/static_config.rs +++ b/komorebi/src/static_config.rs @@ -237,7 +237,7 @@ impl From<&Monitor> for MonitorConfig { } #[derive(Debug, Serialize, Deserialize, JsonSchema)] -/// The `komorebi.json` static configuration file reference for `v0.1.31` +/// The `komorebi.json` static configuration file reference for `v0.1.32` pub struct StaticConfig { /// DEPRECATED from v0.1.22: no longer required #[serde(skip_serializing_if = "Option::is_none")] diff --git a/komorebic-no-console/Cargo.toml b/komorebic-no-console/Cargo.toml index 803cf700..d7eaf387 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.31" +version = "0.1.32" description = "The command-line interface (without a console) for Komorebi, a tiling window manager for Windows" categories = ["cli", "tiling-window-manager", "windows"] repository = "https://github.com/LGUG2Z/komorebi" diff --git a/komorebic/Cargo.toml b/komorebic/Cargo.toml index 9f7178af..c43e0ac3 100644 --- a/komorebic/Cargo.toml +++ b/komorebic/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "komorebic" -version = "0.1.31" +version = "0.1.32" description = "The command-line interface for Komorebi, a tiling window manager for Windows" categories = ["cli", "tiling-window-manager", "windows"] repository = "https://github.com/LGUG2Z/komorebi"