summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAram Drevekenin <aram@poor.dev>2022-04-13 18:46:00 +0200
committerAram Drevekenin <aram@poor.dev>2022-04-13 18:46:00 +0200
commit3a2fee601a03b021d7c3698220a94d440be9e269 (patch)
treee57c3f794a03f7bcc3281168aaa6d9365bad30a1
parent9ce4ef49a6a0145756b93f48855ab0d3f3ec3fc1 (diff)
chore(package): patch version
-rw-r--r--Cargo.toml8
-rw-r--r--Makefile.toml4
-rwxr-xr-xassets/plugins/strider.wasmbin595366 -> 592942 bytes
-rwxr-xr-xassets/plugins/tab-bar.wasmbin486427 -> 486372 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
9 files changed, 15 insertions, 17 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0881052db..f92f5e073 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij"
-version = "0.28.0"
+version = "0.28.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.28.0" }
-zellij-server = { path = "zellij-server/", version = "0.28.0" }
-zellij-utils = { path = "zellij-utils/", version = "0.28.0" }
+zellij-client = { path = "zellij-client/", version = "0.28.1" }
+zellij-server = { path = "zellij-server/", version = "0.28.1" }
+zellij-utils = { path = "zellij-utils/", version = "0.28.1" }
log = "0.4.16"
dialoguer = "0.9.0"
suggestion = "0.3"
diff --git a/Makefile.toml b/Makefile.toml
index 198597dee..2d3e7ec82 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -133,9 +133,7 @@ for plugin in ${plugins}
mkdir ${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/assets/plugins/
plugin_name = basename ${plugin}
plugin_out = set ${CARGO_MAKE_WORKSPACE_WORKING_DIRECTORY}/assets/plugins/${plugin_name}
- if is_path_newer ${plugin} ${plugin_out} or not is_path_exists ${plugin_out}
- exec wasm-opt -O ${plugin} -o ${plugin_out}
- end
+ exec wasm-opt -O ${plugin} -o ${plugin_out}
end
'''
diff --git a/assets/plugins/strider.wasm b/assets/plugins/strider.wasm
index 742a8b382..3e2d6da40 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 e6da17b8e..95096ad1f 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 bed54492b..63f7aa44c 100644
--- a/zellij-client/Cargo.toml
+++ b/zellij-client/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-client"
-version = "0.28.0"
+version = "0.28.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.28.0" }
-zellij-tile = { path = "../zellij-tile/", version = "0.28.0" }
+zellij-utils = { path = "../zellij-utils/", version = "0.28.1" }
+zellij-tile = { path = "../zellij-tile/", version = "0.28.1" }
log = "0.4.16"
[dev-dependencies]
diff --git a/zellij-server/Cargo.toml b/zellij-server/Cargo.toml
index 06cad516f..c5a3e9cc6 100644
--- a/zellij-server/Cargo.toml
+++ b/zellij-server/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-server"
-version = "0.28.0"
+version = "0.28.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.28.0" }
-zellij-tile = { path = "../zellij-tile/", version = "0.28.0" }
+zellij-utils = { path = "../zellij-utils/", version = "0.28.1" }
+zellij-tile = { path = "../zellij-tile/", version = "0.28.1" }
log = "0.4.16"
typetag = "0.1.7"
chrono = "0.4.19"
diff --git a/zellij-tile-utils/Cargo.toml b/zellij-tile-utils/Cargo.toml
index ad960a6e9..dbde179b7 100644
--- a/zellij-tile-utils/Cargo.toml
+++ b/zellij-tile-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile-utils"
-version = "0.28.0"
+version = "0.28.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 37174fa21..11d48e642 100644
--- a/zellij-tile/Cargo.toml
+++ b/zellij-tile/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile"
-version = "0.28.0"
+version = "0.28.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 8ef514dfa..7bc944d54 100644
--- a/zellij-utils/Cargo.toml
+++ b/zellij-utils/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "zellij-utils"
-version = "0.28.0"
+version = "0.28.1"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "A utility library for Zellij client and server"
@@ -32,7 +32,7 @@ strum = "0.20.0"
thiserror = "1.0.30"
url = { version = "2.2.2", features = ["serde"] }
vte = "0.10.1"
-zellij-tile = { path = "../zellij-tile/", version = "0.28.0" }
+zellij-tile = { path = "../zellij-tile/", version = "0.28.1" }
log = "0.4.16"
log4rs = "1.0.0"
unicode-width = "0.1.8"