summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--CHANGELOG.md2
-rw-r--r--Cargo.lock12
-rw-r--r--Cargo.toml8
-rwxr-xr-xassets/plugins/compact-bar.wasmbin609307 -> 600706 bytes
-rwxr-xr-xassets/plugins/status-bar.wasmbin699254 -> 697203 bytes
-rwxr-xr-xassets/plugins/strider.wasmbin640246 -> 634099 bytes
-rwxr-xr-xassets/plugins/tab-bar.wasmbin585703 -> 577059 bytes
-rw-r--r--zellij-client/Cargo.toml4
-rw-r--r--zellij-server/Cargo.toml4
-rw-r--r--zellij-tile-utils/Cargo.toml2
-rw-r--r--zellij-tile/Cargo.toml4
-rw-r--r--zellij-utils/Cargo.toml2
12 files changed, 20 insertions, 18 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 6d037ea20..2b12c77d1 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.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)
* Terminal compatibility: forward OSC52 clipboard copy events from terminals (https://github.com/zellij-org/zellij/pull/1644)
diff --git a/Cargo.lock b/Cargo.lock
index 30505e9db..dda5d8b74 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -3296,7 +3296,7 @@ dependencies = [
[[package]]
name = "zellij"
-version = "0.32.0"
+version = "0.31.2"
dependencies = [
"anyhow",
"dialoguer",
@@ -3314,7 +3314,7 @@ dependencies = [
[[package]]
name = "zellij-client"
-version = "0.32.0"
+version = "0.31.2"
dependencies = [
"insta",
"log",
@@ -3324,7 +3324,7 @@ dependencies = [
[[package]]
name = "zellij-server"
-version = "0.32.0"
+version = "0.31.2"
dependencies = [
"ansi_term",
"arrayvec 0.7.2",
@@ -3353,7 +3353,7 @@ dependencies = [
[[package]]
name = "zellij-tile"
-version = "0.32.0"
+version = "0.31.2"
dependencies = [
"clap",
"serde",
@@ -3365,14 +3365,14 @@ dependencies = [
[[package]]
name = "zellij-tile-utils"
-version = "0.32.0"
+version = "0.31.2"
dependencies = [
"ansi_term",
]
[[package]]
name = "zellij-utils"
-version = "0.32.0"
+version = "0.31.2"
dependencies = [
"anyhow",
"async-std",
diff --git a/Cargo.toml b/Cargo.toml
index c0ec182d9..4032ac792 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij"
-version = "0.32.0"
+version = "0.31.2"
authors = ["Aram Drevekenin <aram@poor.dev>"]
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.2" }
+zellij-server = { path = "zellij-server/", version = "0.31.2" }
+zellij-utils = { path = "zellij-utils/", version = "0.31.2" }
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 27fb1f8a3..079f285de 100755
--- a/assets/plugins/compact-bar.wasm
+++ b/assets/plugins/compact-bar.wasm
Binary files differ
diff --git a/assets/plugins/status-bar.wasm b/assets/plugins/status-bar.wasm
index ea05b056d..ee3a4a27d 100755
--- 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 cdbfe988c..6b304f9b6 100755
--- 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 c350e20c7..b904b0596 100755
--- 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 30370d47e..8f50cc0cd 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.2"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
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.2" }
log = "0.4.17"
[dev-dependencies]
diff --git a/zellij-server/Cargo.toml b/zellij-server/Cargo.toml
index 5b8035a89..9fc2d8a01 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.2"
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.32.0" }
+zellij-utils = { path = "../zellij-utils/", version = "0.31.2" }
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..332ffb4e0 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.2"
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 de07a7442..301e11876 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.2"
authors = ["Brooks J Rady <b.j.rady@gmail.com>"]
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.2" }
diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml
index 0b7a95a05..ca689af62 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.2"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "A utility library for Zellij client and server"