summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2022-03-16 14:03:07 +0100
committerAram Drevekenin <aram@poor.dev>2022-03-16 14:03:07 +0100
commit9c7d13984f498c9d6c712098bd27eb1ed211dbb9 (patch)
treefaf94362207a084c17911ac690ee88253fab0081
parentc2e388f339c50dfdc6e74fc210a5511e5a0dbea2 (diff)
chore(release): v0.26.1v0.26.1
-rw-r--r--CHANGELOG.md3
-rw-r--r--Cargo.lock12
-rw-r--r--Cargo.toml8
-rwxr-xr-xassets/plugins/status-bar.wasmbin545028 -> 552124 bytes
-rwxr-xr-xassets/plugins/strider.wasmbin581122 -> 587350 bytes
-rwxr-xr-xassets/plugins/tab-bar.wasmbin444257 -> 450364 bytes
-rw-r--r--zellij-client/Cargo.toml6
-rw-r--r--zellij-server/Cargo.toml6
-rw-r--r--zellij-tile-utils/Cargo.toml2
-rw-r--r--zellij-tile/Cargo.toml2
-rw-r--r--zellij-utils/Cargo.toml4
11 files changed, 23 insertions, 20 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index a3cdcde46..2a5e3950e 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -5,6 +5,9 @@ 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.26.1] - 2022-03-16
+* HOTFIX: Paste regression (https://github.com/zellij-org/zellij/commit/08d2014cfea1583059338a338bc4d5f632763fdb)
* Add: add error reporting system (https://github.com/zellij-org/zellij/pull/1038)
* Fix: switch to annotated release tags (https://github.com/zellij-org/zellij/pull/1223)
diff --git a/Cargo.lock b/Cargo.lock
index 747e63d60..f2690ecb9 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -2722,7 +2722,7 @@ dependencies = [
[[package]]
name = "zellij"
-version = "0.27.0"
+version = "0.26.1"
dependencies = [
"anyhow",
"dialoguer",
@@ -2739,7 +2739,7 @@ dependencies = [
[[package]]
name = "zellij-client"
-version = "0.27.0"
+version = "0.26.1"
dependencies = [
"insta",
"log",
@@ -2750,7 +2750,7 @@ dependencies = [
[[package]]
name = "zellij-server"
-version = "0.27.0"
+version = "0.26.1"
dependencies = [
"ansi_term",
"async-trait",
@@ -2776,7 +2776,7 @@ dependencies = [
[[package]]
name = "zellij-tile"
-version = "0.27.0"
+version = "0.26.1"
dependencies = [
"clap",
"serde",
@@ -2787,14 +2787,14 @@ dependencies = [
[[package]]
name = "zellij-tile-utils"
-version = "0.27.0"
+version = "0.26.1"
dependencies = [
"ansi_term",
]
[[package]]
name = "zellij-utils"
-version = "0.27.0"
+version = "0.26.1"
dependencies = [
"anyhow",
"async-std",
diff --git a/Cargo.toml b/Cargo.toml
index 30030d616..78457fdcb 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij"
-version = "0.27.0"
+version = "0.26.1"
authors = ["Aram Drevekenin <aram@poor.dev>"]
edition = "2021"
description = "A terminal workspace with batteries included"
@@ -15,9 +15,9 @@ rust-version = "1.56"
[dependencies]
anyhow = "1.0"
names = "0.11.0"
-zellij-client = { path = "zellij-client/", version = "0.27.0" }
-zellij-server = { path = "zellij-server/", version = "0.27.0" }
-zellij-utils = { path = "zellij-utils/", version = "0.27.0" }
+zellij-client = { path = "zellij-client/", version = "0.26.1" }
+zellij-server = { path = "zellij-server/", version = "0.26.1" }
+zellij-utils = { path = "zellij-utils/", version = "0.26.1" }
log = "0.4.14"
dialoguer = "0.9.0"
suggestion = "0.3"
diff --git a/assets/plugins/status-bar.wasm b/assets/plugins/status-bar.wasm
index 08bd71d30..40addf3bb 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 5becf3a93..435e0ccd3 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 7e2f6f28c..668181dba 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 4684ea725..7ab0f2551 100644
--- a/zellij-client/Cargo.toml
+++ b/zellij-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-client"
-version = "0.27.0"
+version = "0.26.1"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "The client-side library for Zellij"
@@ -10,8 +10,8 @@ license = "MIT"
[dependencies]
mio = { version = "0.7.11", features = ['os-ext'] }
-zellij-utils = { path = "../zellij-utils/", version = "0.27.0" }
-zellij-tile = { path = "../zellij-tile/", version = "0.27.0" }
+zellij-utils = { path = "../zellij-utils/", version = "0.26.1" }
+zellij-tile = { path = "../zellij-tile/", version = "0.26.1" }
log = "0.4.14"
[dev-dependencies]
diff --git a/zellij-server/Cargo.toml b/zellij-server/Cargo.toml
index c3be617c2..42c7ddb3e 100644
--- a/zellij-server/Cargo.toml
+++ b/zellij-server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-server"
-version = "0.27.0"
+version = "0.26.1"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "The server-side library for Zellij"
@@ -21,8 +21,8 @@ url = "2.2.2"
wasmer = "1.0.0"
wasmer-wasi = "1.0.0"
cassowary = "0.3.0"
-zellij-utils = { path = "../zellij-utils/", version = "0.27.0" }
-zellij-tile = { path = "../zellij-tile/", version = "0.27.0" }
+zellij-utils = { path = "../zellij-utils/", version = "0.26.1" }
+zellij-tile = { path = "../zellij-tile/", version = "0.26.1" }
log = "0.4.14"
typetag = "0.1.7"
chrono = "0.4.19"
diff --git a/zellij-tile-utils/Cargo.toml b/zellij-tile-utils/Cargo.toml
index 205307c95..edf26753e 100644
--- a/zellij-tile-utils/Cargo.toml
+++ b/zellij-tile-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile-utils"
-version = "0.27.0"
+version = "0.26.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 8d4707691..ecafeebe0 100644
--- a/zellij-tile/Cargo.toml
+++ b/zellij-tile/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile"
-version = "0.27.0"
+version = "0.26.1"
authors = ["Brooks J Rady <b.j.rady@gmail.com>"]
edition = "2021"
description = "A small client-side library for writing Zellij plugins"
diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml
index cb4042f2c..4e837f5a1 100644
--- a/zellij-utils/Cargo.toml
+++ b/zellij-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-utils"
-version = "0.27.0"
+version = "0.26.1"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "A utility library for Zellij client and server"
@@ -33,7 +33,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.27.0" }
+zellij-tile = { path = "../zellij-tile/", version = "0.26.1" }
log = "0.4.14"
log4rs = "1.0.0"
unicode-width = "0.1.8"