Skip to content

Commit

Permalink
chore(release): v0.20.1
Browse files Browse the repository at this point in the history
  • Loading branch information
imsnif committed Nov 10, 2021
1 parent aa7784b commit 0fec10b
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 23 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij"
version = "0.21.0"
version = "0.20.1"
authors = ["Aram Drevekenin <[email protected]>"]
edition = "2021"
description = "A terminal workspace with batteries included"
Expand All @@ -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"

Expand Down
Binary file modified assets/plugins/status-bar.wasm
Binary file not shown.
Binary file modified assets/plugins/strider.wasm
Binary file not shown.
Binary file modified assets/plugins/tab-bar.wasm
Binary file not shown.
6 changes: 3 additions & 3 deletions zellij-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-client"
version = "0.21.0"
version = "0.20.1"
authors = ["Kunal Mohan <[email protected]>"]
edition = "2021"
description = "The client-side library for Zellij"
Expand All @@ -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"

Expand Down
4 changes: 2 additions & 2 deletions zellij-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-server"
version = "0.21.0"
version = "0.20.1"
authors = ["Kunal Mohan <[email protected]>"]
edition = "2021"
description = "The server-side library for Zellij"
Expand All @@ -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"
Expand Down
4 changes: 0 additions & 4 deletions zellij-server/src/pty.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 =
Expand Down
2 changes: 1 addition & 1 deletion zellij-tile-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile-utils"
version = "0.21.0"
version = "0.20.1"
authors = ["denis <[email protected]>"]
edition = "2021"
description = "A utility library for Zellij plugins"
Expand Down
2 changes: 1 addition & 1 deletion zellij-tile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile"
version = "0.21.0"
version = "0.20.1"
authors = ["Brooks J Rady <[email protected]>"]
edition = "2021"
description = "A small client-side library for writing Zellij plugins"
Expand Down
4 changes: 2 additions & 2 deletions zellij-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-utils"
version = "0.21.0"
version = "0.20.1"
authors = ["Kunal Mohan <[email protected]>"]
edition = "2021"
description = "A utility library for Zellij client and server"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit 0fec10b

Please sign in to comment.