diff --git a/CHANGELOG.md b/CHANGELOG.md index 72b6d9eb..5bbbc019 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] + +## [0.42.1] - 2025-03-21 * fix(mouse): fix mouse handling in windows terminal (https://github.com/zellij-org/zellij/pull/4076) ## [0.42.0] - 2025-03-17 diff --git a/Cargo.lock b/Cargo.lock index 9f3bc42e..34be5fd0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5080,7 +5080,7 @@ dependencies = [ [[package]] name = "zellij" -version = "0.43.0" +version = "0.42.1" dependencies = [ "dialoguer", "insta", @@ -5098,7 +5098,7 @@ dependencies = [ [[package]] name = "zellij-client" -version = "0.43.0" +version = "0.42.1" dependencies = [ "insta", "log", @@ -5112,7 +5112,7 @@ dependencies = [ [[package]] name = "zellij-server" -version = "0.43.0" +version = "0.42.1" dependencies = [ "ansi_term", "arrayvec 0.7.2", @@ -5144,7 +5144,7 @@ dependencies = [ [[package]] name = "zellij-tile" -version = "0.43.0" +version = "0.42.1" dependencies = [ "clap", "serde", @@ -5156,14 +5156,14 @@ dependencies = [ [[package]] name = "zellij-tile-utils" -version = "0.43.0" +version = "0.42.1" dependencies = [ "ansi_term", ] [[package]] name = "zellij-utils" -version = "0.43.0" +version = "0.42.1" dependencies = [ "anyhow", "async-channel", diff --git a/Cargo.toml b/Cargo.toml index a4114e9d..f5671a7c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij" -version = "0.43.0" +version = "0.42.1" authors = ["Aram Drevekenin "] edition = "2021" description = "A terminal workspace with batteries included" @@ -14,9 +14,9 @@ rust-version = "1.84" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -zellij-client = { path = "zellij-client/", version = "0.43.0" } -zellij-server = { path = "zellij-server/", version = "0.43.0" } -zellij-utils = { path = "zellij-utils/", version = "0.43.0" } +zellij-client = { path = "zellij-client/", version = "0.42.1" } +zellij-server = { path = "zellij-server/", version = "0.42.1" } +zellij-utils = { path = "zellij-utils/", version = "0.42.1" } thiserror = "1.0.40" names = { version = "0.14.0", default-features = false } log = "0.4.17" diff --git a/zellij-client/Cargo.toml b/zellij-client/Cargo.toml index 513cad1f..0925f700 100644 --- a/zellij-client/Cargo.toml +++ b/zellij-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-client" -version = "0.43.0" +version = "0.42.1" authors = ["Kunal Mohan "] edition = "2021" description = "The client-side library for Zellij" @@ -14,7 +14,7 @@ serde = { version = "1.0", features = ["derive"] } url = { version = "2.2.2", features = ["serde"] } serde_yaml = "0.8" serde_json = "1.0" -zellij-utils = { path = "../zellij-utils/", version = "0.43.0" } +zellij-utils = { path = "../zellij-utils/", version = "0.42.1" } log = "0.4.17" [dev-dependencies] diff --git a/zellij-server/Cargo.toml b/zellij-server/Cargo.toml index c11c4ac0..ceaaf93f 100644 --- a/zellij-server/Cargo.toml +++ b/zellij-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-server" -version = "0.43.0" +version = "0.42.1" authors = ["Kunal Mohan "] edition = "2021" description = "The server-side library for Zellij" @@ -21,7 +21,7 @@ unicode-width = "0.1.8" url = "2.2.2" wasmtime-wasi = "29.0.1" # Keep in sync with wasmtime cassowary = "0.3.0" -zellij-utils = { path = "../zellij-utils/", version = "0.43.0" } +zellij-utils = { path = "../zellij-utils/", version = "0.42.1" } log = "0.4.17" typetag = "0.1.7" chrono = "0.4.19" diff --git a/zellij-tile-utils/Cargo.toml b/zellij-tile-utils/Cargo.toml index 74ede7a6..60e7ce35 100644 --- a/zellij-tile-utils/Cargo.toml +++ b/zellij-tile-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile-utils" -version = "0.43.0" +version = "0.42.1" authors = ["denis "] edition = "2021" description = "A utility library for Zellij plugins" diff --git a/zellij-tile/Cargo.toml b/zellij-tile/Cargo.toml index bd327de4..f0f37e5a 100644 --- a/zellij-tile/Cargo.toml +++ b/zellij-tile/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile" -version = "0.43.0" +version = "0.42.1" authors = ["Brooks J Rady "] edition = "2021" description = "A small client-side library for writing Zellij plugins" @@ -12,4 +12,4 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" strum = "0.20.0" strum_macros = "0.20.0" -zellij-utils = { path = "../zellij-utils/", version = "0.43.0" } +zellij-utils = { path = "../zellij-utils/", version = "0.42.1" } diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml index ab91707c..14e50b51 100644 --- a/zellij-utils/Cargo.toml +++ b/zellij-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-utils" -version = "0.43.0" +version = "0.42.1" authors = ["Kunal Mohan "] edition = "2021" description = "A utility library for Zellij client and server" diff --git a/zellij-utils/assets/plugins/about.wasm b/zellij-utils/assets/plugins/about.wasm index d3ec8e8c..bfd6fee0 100755 Binary files a/zellij-utils/assets/plugins/about.wasm and b/zellij-utils/assets/plugins/about.wasm differ diff --git a/zellij-utils/assets/plugins/compact-bar.wasm b/zellij-utils/assets/plugins/compact-bar.wasm index 3ada2eea..07182a25 100755 Binary files a/zellij-utils/assets/plugins/compact-bar.wasm and b/zellij-utils/assets/plugins/compact-bar.wasm differ diff --git a/zellij-utils/assets/plugins/configuration.wasm b/zellij-utils/assets/plugins/configuration.wasm index 738d5752..60584f2d 100755 Binary files a/zellij-utils/assets/plugins/configuration.wasm and b/zellij-utils/assets/plugins/configuration.wasm differ diff --git a/zellij-utils/assets/plugins/fixture-plugin-for-tests.wasm b/zellij-utils/assets/plugins/fixture-plugin-for-tests.wasm index 2c42e164..f2c3b451 100755 Binary files a/zellij-utils/assets/plugins/fixture-plugin-for-tests.wasm and b/zellij-utils/assets/plugins/fixture-plugin-for-tests.wasm differ diff --git a/zellij-utils/assets/plugins/plugin-manager.wasm b/zellij-utils/assets/plugins/plugin-manager.wasm index 9587216c..579b5209 100755 Binary files a/zellij-utils/assets/plugins/plugin-manager.wasm and b/zellij-utils/assets/plugins/plugin-manager.wasm differ diff --git a/zellij-utils/assets/plugins/session-manager.wasm b/zellij-utils/assets/plugins/session-manager.wasm index 81118daf..f35ccab3 100755 Binary files a/zellij-utils/assets/plugins/session-manager.wasm and b/zellij-utils/assets/plugins/session-manager.wasm differ diff --git a/zellij-utils/assets/plugins/status-bar.wasm b/zellij-utils/assets/plugins/status-bar.wasm index e6df9a3f..b0b28af8 100755 Binary files a/zellij-utils/assets/plugins/status-bar.wasm and b/zellij-utils/assets/plugins/status-bar.wasm differ diff --git a/zellij-utils/assets/plugins/strider.wasm b/zellij-utils/assets/plugins/strider.wasm index d4ad5a75..89dcc33d 100755 Binary files a/zellij-utils/assets/plugins/strider.wasm and b/zellij-utils/assets/plugins/strider.wasm differ diff --git a/zellij-utils/assets/plugins/tab-bar.wasm b/zellij-utils/assets/plugins/tab-bar.wasm index 6ac9a4b6..10a2ffdd 100755 Binary files a/zellij-utils/assets/plugins/tab-bar.wasm and b/zellij-utils/assets/plugins/tab-bar.wasm differ