summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2023-11-13 08:51:24 +0100
committerAram Drevekenin <aram@poor.dev>2023-11-13 08:51:24 +0100
commitebcf35989a2036f4a6746670dc3465e3899f8fb8 (patch)
tree5dc518a1897a685d61eca6a8d1c65f4e60ad89be
parent4756c2125cf355383156f404a33bfb9464e69798 (diff)
chore(release): v0.39.1v0.39.1
-rw-r--r--CHANGELOG.md4
-rw-r--r--Cargo.lock12
-rw-r--r--Cargo.toml8
-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
-rwxr-xr-xzellij-utils/assets/plugins/compact-bar.wasmbin865967 -> 872472 bytes
-rwxr-xr-xzellij-utils/assets/plugins/fixture-plugin-for-tests.wasmbin851561 -> 858006 bytes
-rwxr-xr-xzellij-utils/assets/plugins/session-manager.wasmbin862588 -> 868919 bytes
-rwxr-xr-xzellij-utils/assets/plugins/status-bar.wasmbin1019553 -> 1025362 bytes
-rwxr-xr-xzellij-utils/assets/plugins/strider.wasmbin2094341 -> 2101147 bytes
-rwxr-xr-xzellij-utils/assets/plugins/tab-bar.wasmbin839283 -> 845795 bytes
14 files changed, 21 insertions, 19 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4fbce254d..76ed3987a 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.39.1] - 2023-11-13
* fix: styled underlines in editors (https://github.com/zellij-org/zellij/pull/2918)
* fix(plugins): add `LaunchPlugin` and some cwd fixes (https://github.com/zellij-org/zellij/pull/2916)
* fix(performance): significantly reduce CPU utilization when serializing sessions (https://github.com/zellij-org/zellij/pull/2920)
@@ -12,7 +14,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
* fix(resurrection): reduce default serialization interval to 1m and make it configurable (https://github.com/zellij-org/zellij/pull/2923)
* fix(plugins): allow reloading plugins if they crashed (https://github.com/zellij-org/zellij/pull/2929)
-## [0.39.0] - 2023-07-11
+## [0.39.0] - 2023-11-07
* feat(panes): start panes/editors/commands/plugins in-place (https://github.com/zellij-org/zellij/pull/2795)
* fix(theme): fg color for gruvbox light theme (https://github.com/zellij-org/zellij/pull/2791)
* fix: display parsing error for kdl files located under the 'themes' directory (https://github.com/zellij-org/zellij/pull/2762)
diff --git a/Cargo.lock b/Cargo.lock
index 56a9795fd..73004a245 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -5037,7 +5037,7 @@ dependencies = [
[[package]]
name = "zellij"
-version = "0.40.0"
+version = "0.39.1"
dependencies = [
"dialoguer",
"insta",
@@ -5055,7 +5055,7 @@ dependencies = [
[[package]]
name = "zellij-client"
-version = "0.40.0"
+version = "0.39.1"
dependencies = [
"insta",
"log",
@@ -5069,7 +5069,7 @@ dependencies = [
[[package]]
name = "zellij-server"
-version = "0.40.0"
+version = "0.39.1"
dependencies = [
"ansi_term",
"arrayvec 0.7.2",
@@ -5100,7 +5100,7 @@ dependencies = [
[[package]]
name = "zellij-tile"
-version = "0.40.0"
+version = "0.39.1"
dependencies = [
"clap",
"serde",
@@ -5112,14 +5112,14 @@ dependencies = [
[[package]]
name = "zellij-tile-utils"
-version = "0.40.0"
+version = "0.39.1"
dependencies = [
"ansi_term",
]
[[package]]
name = "zellij-utils"
-version = "0.40.0"
+version = "0.39.1"
dependencies = [
"anyhow",
"async-channel",
diff --git a/Cargo.toml b/Cargo.toml
index f268c16bc..22fcdf4b3 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij"
-version = "0.40.0"
+version = "0.39.1"
authors = ["Aram Drevekenin <aram@poor.dev>"]
edition = "2021"
description = "A terminal workspace with batteries included"
@@ -13,9 +13,9 @@ rust-version = "1.60"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
-zellij-client = { path = "zellij-client/", version = "0.40.0" }
-zellij-server = { path = "zellij-server/", version = "0.40.0" }
-zellij-utils = { path = "zellij-utils/", version = "0.40.0" }
+zellij-client = { path = "zellij-client/", version = "0.39.1" }
+zellij-server = { path = "zellij-server/", version = "0.39.1" }
+zellij-utils = { path = "zellij-utils/", version = "0.39.1" }
thiserror = "1.0.40"
names = { version = "0.14.0", default-features = false }
log = "0.4.17"
diff --git a/zellij-client/Cargo.toml b/zellij-client/Cargo.toml
index 2c1db501f..869025170 100644
--- a/zellij-client/Cargo.toml
+++ b/zellij-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-client"
-version = "0.40.0"
+version = "0.39.1"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "The client-side library for Zellij"
@@ -14,7 +14,7 @@ serde = { version = "1.0", features = ["derive"] }
url = { version = "2.2.2", features = ["serde"] }
serde_yaml = "0.8"
serde_json = "1.0"
-zellij-utils = { path = "../zellij-utils/", version = "0.40.0" }
+zellij-utils = { path = "../zellij-utils/", version = "0.39.1" }
log = "0.4.17"
[dev-dependencies]
diff --git a/zellij-server/Cargo.toml b/zellij-server/Cargo.toml
index 21d838992..7d97dd535 100644
--- a/zellij-server/Cargo.toml
+++ b/zellij-server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-server"
-version = "0.40.0"
+version = "0.39.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 = "3.1.1"
wasmer-wasi = "3.1.1"
cassowary = "0.3.0"
-zellij-utils = { path = "../zellij-utils/", version = "0.40.0" }
+zellij-utils = { path = "../zellij-utils/", version = "0.39.1" }
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 16b146cb8..01517e5d1 100644
--- a/zellij-tile-utils/Cargo.toml
+++ b/zellij-tile-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile-utils"
-version = "0.40.0"
+version = "0.39.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 3464e9dde..35f03b2b6 100644
--- a/zellij-tile/Cargo.toml
+++ b/zellij-tile/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile"
-version = "0.40.0"
+version = "0.39.1"
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.40.0" }
+zellij-utils = { path = "../zellij-utils/", version = "0.39.1" }
diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml
index 68588aa9b..666362c84 100644
--- a/zellij-utils/Cargo.toml
+++ b/zellij-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-utils"
-version = "0.40.0"
+version = "0.39.1"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "A utility library for Zellij client and server"
diff --git a/zellij-utils/assets/plugins/compact-bar.wasm b/zellij-utils/assets/plugins/compact-bar.wasm
index 73fd1c8a8..080b17618 100755
--- a/zellij-utils/assets/plugins/compact-bar.wasm
+++ b/zellij-utils/assets/plugins/compact-bar.wasm
Binary files differ
diff --git a/zellij-utils/assets/plugins/fixture-plugin-for-tests.wasm b/zellij-utils/assets/plugins/fixture-plugin-for-tests.wasm
index f7d377cd0..f549393ab 100755
--- a/zellij-utils/assets/plugins/fixture-plugin-for-tests.wasm
+++ b/zellij-utils/assets/plugins/fixture-plugin-for-tests.wasm
Binary files differ
diff --git a/zellij-utils/assets/plugins/session-manager.wasm b/zellij-utils/assets/plugins/session-manager.wasm
index 996477a16..a20de6773 100755
--- a/zellij-utils/assets/plugins/session-manager.wasm
+++ b/zellij-utils/assets/plugins/session-manager.wasm
Binary files differ
diff --git a/zellij-utils/assets/plugins/status-bar.wasm b/zellij-utils/assets/plugins/status-bar.wasm
index 353518686..e670ed38a 100755
--- a/zellij-utils/assets/plugins/status-bar.wasm
+++ b/zellij-utils/assets/plugins/status-bar.wasm
Binary files differ
diff --git a/zellij-utils/assets/plugins/strider.wasm b/zellij-utils/assets/plugins/strider.wasm
index c693538c7..f845e1eec 100755
--- a/zellij-utils/assets/plugins/strider.wasm
+++ b/zellij-utils/assets/plugins/strider.wasm
Binary files differ
diff --git a/zellij-utils/assets/plugins/tab-bar.wasm b/zellij-utils/assets/plugins/tab-bar.wasm
index 4217457c8..2fbd8e57e 100755
--- a/zellij-utils/assets/plugins/tab-bar.wasm
+++ b/zellij-utils/assets/plugins/tab-bar.wasm
Binary files differ