Skip to content

Commit 588167f

Browse files
committed
chore(release): v0.31.3
1 parent 94669fc commit 588167f

File tree

12 files changed

+21
-18
lines changed

12 files changed

+21
-18
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
66

77
## [Unreleased]
88

9+
## [0.31.3] - 2022-08-18
10+
* HOTFIX: fix up-arrow regression
11+
912
## [0.31.2] - 2022-08-17
1013
* fix: crash when attaching to a session without the first tab (https://github.com/zellij-org/zellij/pull/1648)
1114
* fix: race crash on startup when server is not ready (https://github.com/zellij-org/zellij/pull/1651)

Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zellij"
3-
version = "0.32.0"
3+
version = "0.31.3"
44
authors = ["Aram Drevekenin <aram@poor.dev>"]
55
edition = "2021"
66
description = "A terminal workspace with batteries included"
@@ -16,9 +16,9 @@ rust-version = "1.59"
1616
anyhow = "1.0"
1717
names = { version = "0.13.0", default-features = false }
1818
miette = { version = "3.3.0", features = ["fancy"] }
19-
zellij-client = { path = "zellij-client/", version = "0.32.0" }
20-
zellij-server = { path = "zellij-server/", version = "0.32.0" }
21-
zellij-utils = { path = "zellij-utils/", version = "0.32.0" }
19+
zellij-client = { path = "zellij-client/", version = "0.31.3" }
20+
zellij-server = { path = "zellij-server/", version = "0.31.3" }
21+
zellij-utils = { path = "zellij-utils/", version = "0.31.3" }
2222
log = "0.4.17"
2323
dialoguer = "0.10.1"
2424
suggest = "0.4"

assets/plugins/compact-bar.wasm

262 Bytes
Binary file not shown.

assets/plugins/status-bar.wasm

-519 Bytes
Binary file not shown.

assets/plugins/strider.wasm

0 Bytes
Binary file not shown.

assets/plugins/tab-bar.wasm

655 Bytes
Binary file not shown.

zellij-client/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zellij-client"
3-
version = "0.32.0"
3+
version = "0.31.3"
44
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
55
edition = "2021"
66
description = "The client-side library for Zellij"
@@ -10,7 +10,7 @@ license = "MIT"
1010

1111
[dependencies]
1212
mio = { version = "0.7.11", features = ['os-ext'] }
13-
zellij-utils = { path = "../zellij-utils/", version = "0.32.0" }
13+
zellij-utils = { path = "../zellij-utils/", version = "0.31.3" }
1414
log = "0.4.17"
1515

1616
[dev-dependencies]

zellij-server/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zellij-server"
3-
version = "0.32.0"
3+
version = "0.31.3"
44
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
55
edition = "2021"
66
description = "The server-side library for Zellij"
@@ -21,7 +21,7 @@ url = "2.2.2"
2121
wasmer = "1.0.0"
2222
wasmer-wasi = "1.0.0"
2323
cassowary = "0.3.0"
24-
zellij-utils = { path = "../zellij-utils/", version = "0.32.0" }
24+
zellij-utils = { path = "../zellij-utils/", version = "0.31.3" }
2525
log = "0.4.17"
2626
typetag = "0.1.7"
2727
chrono = "0.4.19"

zellij-tile-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zellij-tile-utils"
3-
version = "0.32.0"
3+
version = "0.31.3"
44
authors = ["denis <denismaximov98@gmail.com>"]
55
edition = "2021"
66
description = "A utility library for Zellij plugins"

0 commit comments

Comments
 (0)