Skip to content

Commit

Permalink
chore(release): v0.31.3
Browse files Browse the repository at this point in the history
  • Loading branch information
imsnif committed Aug 18, 2022
1 parent 94669fc commit 588167f
Show file tree
Hide file tree
Showing 12 changed files with 21 additions and 18 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
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.32.0"
version = "0.31.3"
authors = ["Aram Drevekenin <[email protected]>"]
edition = "2021"
description = "A terminal workspace with batteries included"
Expand All @@ -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"
Expand Down
Binary file modified assets/plugins/compact-bar.wasm
Binary file not shown.
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.
4 changes: 2 additions & 2 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.32.0"
version = "0.31.3"
authors = ["Kunal Mohan <[email protected]>"]
edition = "2021"
description = "The client-side library for Zellij"
Expand All @@ -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]
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.32.0"
version = "0.31.3"
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.32.0" }
zellij-utils = { path = "../zellij-utils/", version = "0.31.3" }
log = "0.4.17"
typetag = "0.1.7"
chrono = "0.4.19"
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.32.0"
version = "0.31.3"
authors = ["denis <[email protected]>"]
edition = "2021"
description = "A utility library for Zellij plugins"
Expand Down
4 changes: 2 additions & 2 deletions zellij-tile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile"
version = "0.32.0"
version = "0.31.3"
authors = ["Brooks J Rady <[email protected]>"]
edition = "2021"
description = "A small client-side library for writing Zellij plugins"
Expand All @@ -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" }
2 changes: 1 addition & 1 deletion zellij-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-utils"
version = "0.32.0"
version = "0.31.3"
authors = ["Kunal Mohan <[email protected]>"]
edition = "2021"
description = "A utility library for Zellij client and server"
Expand Down

0 comments on commit 588167f

Please sign in to comment.