diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b12c77d1..dcb11c0ac 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] +## [0.31.3] - 2022-08-18 +* HOTFIX: fix up-arrow regression + ## [0.31.2] - 2022-08-17 * fix: crash when attaching to a session without the first tab (https://github.com/zellij-org/zellij/pull/1648) * fix: race crash on startup when server is not ready (https://github.com/zellij-org/zellij/pull/1651) diff --git a/Cargo.lock b/Cargo.lock index 30505e9db..71a2a9f0b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3296,7 +3296,7 @@ dependencies = [ [[package]] name = "zellij" -version = "0.32.0" +version = "0.31.3" dependencies = [ "anyhow", "dialoguer", @@ -3314,7 +3314,7 @@ dependencies = [ [[package]] name = "zellij-client" -version = "0.32.0" +version = "0.31.3" dependencies = [ "insta", "log", @@ -3324,7 +3324,7 @@ dependencies = [ [[package]] name = "zellij-server" -version = "0.32.0" +version = "0.31.3" dependencies = [ "ansi_term", "arrayvec 0.7.2", @@ -3353,7 +3353,7 @@ dependencies = [ [[package]] name = "zellij-tile" -version = "0.32.0" +version = "0.31.3" dependencies = [ "clap", "serde", @@ -3365,14 +3365,14 @@ dependencies = [ [[package]] name = "zellij-tile-utils" -version = "0.32.0" +version = "0.31.3" dependencies = [ "ansi_term", ] [[package]] name = "zellij-utils" -version = "0.32.0" +version = "0.31.3" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index c0ec182d9..837ac5385 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij" -version = "0.32.0" +version = "0.31.3" authors = ["Aram Drevekenin "] edition = "2021" description = "A terminal workspace with batteries included" @@ -16,9 +16,9 @@ rust-version = "1.59" anyhow = "1.0" names = { version = "0.13.0", default-features = false } miette = { version = "3.3.0", features = ["fancy"] } -zellij-client = { path = "zellij-client/", version = "0.32.0" } -zellij-server = { path = "zellij-server/", version = "0.32.0" } -zellij-utils = { path = "zellij-utils/", version = "0.32.0" } +zellij-client = { path = "zellij-client/", version = "0.31.3" } +zellij-server = { path = "zellij-server/", version = "0.31.3" } +zellij-utils = { path = "zellij-utils/", version = "0.31.3" } log = "0.4.17" dialoguer = "0.10.1" suggest = "0.4" diff --git a/assets/plugins/compact-bar.wasm b/assets/plugins/compact-bar.wasm index 079f285de..503b3b8cc 100755 Binary files a/assets/plugins/compact-bar.wasm and b/assets/plugins/compact-bar.wasm differ diff --git a/assets/plugins/status-bar.wasm b/assets/plugins/status-bar.wasm index ee3a4a27d..e625854b1 100755 Binary files a/assets/plugins/status-bar.wasm and b/assets/plugins/status-bar.wasm differ diff --git a/assets/plugins/strider.wasm b/assets/plugins/strider.wasm index 6b304f9b6..5070e33fc 100755 Binary files a/assets/plugins/strider.wasm and b/assets/plugins/strider.wasm differ diff --git a/assets/plugins/tab-bar.wasm b/assets/plugins/tab-bar.wasm index b904b0596..ba4bf9116 100755 Binary files a/assets/plugins/tab-bar.wasm and b/assets/plugins/tab-bar.wasm differ diff --git a/zellij-client/Cargo.toml b/zellij-client/Cargo.toml index 30370d47e..0238b2b37 100644 --- a/zellij-client/Cargo.toml +++ b/zellij-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-client" -version = "0.32.0" +version = "0.31.3" authors = ["Kunal Mohan "] edition = "2021" description = "The client-side library for Zellij" @@ -10,7 +10,7 @@ license = "MIT" [dependencies] mio = { version = "0.7.11", features = ['os-ext'] } -zellij-utils = { path = "../zellij-utils/", version = "0.32.0" } +zellij-utils = { path = "../zellij-utils/", version = "0.31.3" } log = "0.4.17" [dev-dependencies] diff --git a/zellij-server/Cargo.toml b/zellij-server/Cargo.toml index 5b8035a89..dd88efd77 100644 --- a/zellij-server/Cargo.toml +++ b/zellij-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-server" -version = "0.32.0" +version = "0.31.3" authors = ["Kunal Mohan "] edition = "2021" description = "The server-side library for Zellij" @@ -21,7 +21,7 @@ url = "2.2.2" wasmer = "1.0.0" wasmer-wasi = "1.0.0" cassowary = "0.3.0" -zellij-utils = { path = "../zellij-utils/", version = "0.32.0" } +zellij-utils = { path = "../zellij-utils/", version = "0.31.3" } 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 98b1448f0..88d1d7011 100644 --- a/zellij-tile-utils/Cargo.toml +++ b/zellij-tile-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile-utils" -version = "0.32.0" +version = "0.31.3" authors = ["denis "] edition = "2021" description = "A utility library for Zellij plugins" diff --git a/zellij-tile/Cargo.toml b/zellij-tile/Cargo.toml index de07a7442..fa886200a 100644 --- a/zellij-tile/Cargo.toml +++ b/zellij-tile/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile" -version = "0.32.0" +version = "0.31.3" 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.32.0" } +zellij-utils = { path = "../zellij-utils/", version = "0.31.3" } diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml index 0b7a95a05..5c3d60726 100644 --- a/zellij-utils/Cargo.toml +++ b/zellij-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-utils" -version = "0.32.0" +version = "0.31.3" authors = ["Kunal Mohan "] edition = "2021" description = "A utility library for Zellij client and server"