summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md2
-rw-r--r--Cargo.lock12
-rw-r--r--Cargo.toml8
-rw-r--r--assets/plugins/status-bar.wasmbin460418 -> 460738 bytes
-rw-r--r--assets/plugins/strider.wasmbin587973 -> 587701 bytes
-rw-r--r--assets/plugins/tab-bar.wasmbin452051 -> 451354 bytes
-rw-r--r--zellij-client/Cargo.toml6
-rw-r--r--zellij-server/Cargo.toml4
-rw-r--r--zellij-server/src/pty.rs4
-rw-r--r--zellij-tile-utils/Cargo.toml2
-rw-r--r--zellij-tile/Cargo.toml2
-rw-r--r--zellij-utils/Cargo.toml4
12 files changed, 21 insertions, 23 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 360049449..092959bf0 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.20.1] - 2021-11-10
* Add: initial session name to layout template (https://github.com/zellij-org/zellij/pull/789)
* Fix: simplify matches (https://github.com/zellij-org/zellij/pull/844)
* Add: support darwin builds on ci (https://github.com/zellij-org/zellij/pull/846)
diff --git a/Cargo.lock b/Cargo.lock
index ec8123b0a..902bc17b7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2859,7 +2859,7 @@ dependencies = [
[[package]]
name = "zellij"
-version = "0.21.0"
+version = "0.20.1"
dependencies = [
"anyhow",
"dialoguer",
@@ -2875,7 +2875,7 @@ dependencies = [
[[package]]
name = "zellij-client"
-version = "0.21.0"
+version = "0.20.1"
dependencies = [
"insta",
"log",
@@ -2888,7 +2888,7 @@ dependencies = [
[[package]]
name = "zellij-server"
-version = "0.21.0"
+version = "0.20.1"
dependencies = [
"ansi_term 0.12.1",
"async-trait",
@@ -2913,7 +2913,7 @@ dependencies = [
[[package]]
name = "zellij-tile"
-version = "0.21.0"
+version = "0.20.1"
dependencies = [
"serde",
"serde_json",
@@ -2923,14 +2923,14 @@ dependencies = [
[[package]]
name = "zellij-tile-utils"
-version = "0.21.0"
+version = "0.20.1"
dependencies = [
"ansi_term 0.12.1",
]
[[package]]
name = "zellij-utils"
-version = "0.21.0"
+version = "0.20.1"
dependencies = [
"anyhow",
"async-std",
diff --git a/Cargo.toml b/Cargo.toml
index cb620e3e8..9c54c9a7c 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij"
-version = "0.21.0"
+version = "0.20.1"
authors = ["Aram Drevekenin <aram@poor.dev>"]
edition = "2021"
description = "A terminal workspace with batteries included"
@@ -16,9 +16,9 @@ rust-version = "1.56"
[dependencies]
anyhow = "1.0"
names = "0.11.0"
-zellij-client = { path = "zellij-client/", version = "0.21.0" }
-zellij-server = { path = "zellij-server/", version = "0.21.0" }
-zellij-utils = { path = "zellij-utils/", version = "0.21.0" }
+zellij-client = { path = "zellij-client/", version = "0.20.1" }
+zellij-server = { path = "zellij-server/", version = "0.20.1" }
+zellij-utils = { path = "zellij-utils/", version = "0.20.1" }
log = "0.4.14"
dialoguer = "0.9.0"
diff --git a/assets/plugins/status-bar.wasm b/assets/plugins/status-bar.wasm
index 1cd86ac37..aeffd20a1 100644
--- a/assets/plugins/status-bar.wasm
+++ b/assets/plugins/status-bar.wasm
Binary files differ
diff --git a/assets/plugins/strider.wasm b/assets/plugins/strider.wasm
index 569b27385..7d7697184 100644
--- a/assets/plugins/strider.wasm
+++ b/assets/plugins/strider.wasm
Binary files differ
diff --git a/assets/plugins/tab-bar.wasm b/assets/plugins/tab-bar.wasm
index 919d3c4fe..e6ebbf1c7 100644
--- a/assets/plugins/tab-bar.wasm
+++ b/assets/plugins/tab-bar.wasm
Binary files differ
diff --git a/zellij-client/Cargo.toml b/zellij-client/Cargo.toml
index 27a81442b..e1c3e3df3 100644
--- a/zellij-client/Cargo.toml
+++ b/zellij-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-client"
-version = "0.21.0"
+version = "0.20.1"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "The client-side library for Zellij"
@@ -11,8 +11,8 @@ license = "MIT"
[dependencies]
mio = "0.7.11"
termbg = "0.2.3"
-zellij-utils = { path = "../zellij-utils/", version = "0.21.0" }
-zellij-tile = { path = "../zellij-tile/", version = "0.21.0" }
+zellij-utils = { path = "../zellij-utils/", version = "0.20.1" }
+zellij-tile = { path = "../zellij-tile/", version = "0.20.1" }
log = "0.4.14"
terminfo = "0.7.3"
diff --git a/zellij-server/Cargo.toml b/zellij-server/Cargo.toml
index f38739f13..da3ee9ed1 100644
--- a/zellij-server/Cargo.toml
+++ b/zellij-server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-server"
-version = "0.21.0"
+version = "0.20.1"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
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.21.0" }
+zellij-utils = { path = "../zellij-utils/", version = "0.20.1" }
log = "0.4.14"
typetag = "0.1.7"
chrono = "0.4.19"
diff --git a/zellij-server/src/pty.rs b/zellij-server/src/pty.rs
index 8c5a11337..a10df1ac9 100644
--- a/zellij-server/src/pty.rs
+++ b/zellij-server/src/pty.rs
@@ -299,10 +299,6 @@ impl Pty {
terminal_action: Option<TerminalAction>,
client_or_tab_index: ClientOrTabIndex,
) -> RawFd {
- log::info!(
- "spawn_terminal, client_or_tab_index: {:?}",
- client_or_tab_index
- );
let terminal_action = match client_or_tab_index {
ClientOrTabIndex::ClientId(client_id) => {
let mut terminal_action =
diff --git a/zellij-tile-utils/Cargo.toml b/zellij-tile-utils/Cargo.toml
index 6d340da31..cfa1220b1 100644
--- a/zellij-tile-utils/Cargo.toml
+++ b/zellij-tile-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile-utils"
-version = "0.21.0"
+version = "0.20.1"
authors = ["denis <denismaximov98@gmail.com>"]
edition = "2021"
description = "A utility library for Zellij plugins"
diff --git a/zellij-tile/Cargo.toml b/zellij-tile/Cargo.toml
index 2ce7b37b2..a9741aa62 100644
--- a/zellij-tile/Cargo.toml
+++ b/zellij-tile/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile"
-version = "0.21.0"
+version = "0.20.1"
authors = ["Brooks J Rady <b.j.rady@gmail.com>"]
edition = "2021"
description = "A small client-side library for writing Zellij plugins"
diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml
index 2eb8f6b64..c43a1f2dc 100644
--- a/zellij-utils/Cargo.toml
+++ b/zellij-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-utils"
-version = "0.21.0"
+version = "0.20.1"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "A utility library for Zellij client and server"
@@ -32,7 +32,7 @@ termion = "1.5.0"
thiserror = "1.0.30"
url = { version = "2.2.2", features = ["serde"] }
vte = "0.10.1"
-zellij-tile = { path = "../zellij-tile/", version = "0.21.0" }
+zellij-tile = { path = "../zellij-tile/", version = "0.20.1" }
log = "0.4.14"
log4rs = "1.0.0"
unicode-width = "0.1.8"