Skip to content

Commit

Permalink
chore(release): v0.29.1
Browse files Browse the repository at this point in the history
  • Loading branch information
imsnif committed May 2, 2022
1 parent 00f2a53 commit a7ddfe1
Show file tree
Hide file tree
Showing 11 changed files with 22 additions and 20 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.29.1] - 2022-05-02
* fix: forward mouse events to plugin panes (https://github.com/zellij-org/zellij/pull/1369)

## [0.29.0] - 2022-05-02
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij"
version = "0.30.0"
version = "0.29.1"
authors = ["Aram Drevekenin <[email protected]>"]
edition = "2021"
description = "A terminal workspace with batteries included"
Expand All @@ -15,9 +15,9 @@ rust-version = "1.56"
[dependencies]
anyhow = "1.0"
names = "0.11.0"
zellij-client = { path = "zellij-client/", version = "0.30.0" }
zellij-server = { path = "zellij-server/", version = "0.30.0" }
zellij-utils = { path = "zellij-utils/", version = "0.30.0" }
zellij-client = { path = "zellij-client/", version = "0.29.1" }
zellij-server = { path = "zellij-server/", version = "0.29.1" }
zellij-utils = { path = "zellij-utils/", version = "0.29.1" }
log = "0.4.16"
dialoguer = "0.9.0"
suggestion = "0.3"
Expand Down
Binary file modified assets/plugins/status-bar.wasm
Binary file not shown.
Binary file modified assets/plugins/strider.wasm
Binary file not shown.
Binary file modified assets/plugins/tab-bar.wasm
Binary file not shown.
6 changes: 3 additions & 3 deletions zellij-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-client"
version = "0.30.0"
version = "0.29.1"
authors = ["Kunal Mohan <[email protected]>"]
edition = "2021"
description = "The client-side library for Zellij"
Expand All @@ -10,8 +10,8 @@ license = "MIT"

[dependencies]
mio = { version = "0.7.11", features = ['os-ext'] }
zellij-utils = { path = "../zellij-utils/", version = "0.30.0" }
zellij-tile = { path = "../zellij-tile/", version = "0.30.0" }
zellij-utils = { path = "../zellij-utils/", version = "0.29.1" }
zellij-tile = { path = "../zellij-tile/", version = "0.29.1" }
log = "0.4.16"

[dev-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions zellij-server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-server"
version = "0.30.0"
version = "0.29.1"
authors = ["Kunal Mohan <[email protected]>"]
edition = "2021"
description = "The server-side library for Zellij"
Expand All @@ -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.30.0" }
zellij-tile = { path = "../zellij-tile/", version = "0.30.0" }
zellij-utils = { path = "../zellij-utils/", version = "0.29.1" }
zellij-tile = { path = "../zellij-tile/", version = "0.29.1" }
log = "0.4.16"
typetag = "0.1.7"
chrono = "0.4.19"
Expand Down
2 changes: 1 addition & 1 deletion zellij-tile-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile-utils"
version = "0.30.0"
version = "0.29.1"
authors = ["denis <[email protected]>"]
edition = "2021"
description = "A utility library for Zellij plugins"
Expand Down
2 changes: 1 addition & 1 deletion zellij-tile/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-tile"
version = "0.30.0"
version = "0.29.1"
authors = ["Brooks J Rady <[email protected]>"]
edition = "2021"
description = "A small client-side library for writing Zellij plugins"
Expand Down
4 changes: 2 additions & 2 deletions zellij-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zellij-utils"
version = "0.30.0"
version = "0.29.1"
authors = ["Kunal Mohan <[email protected]>"]
edition = "2021"
description = "A utility library for Zellij client and server"
Expand Down Expand Up @@ -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.30.0" }
zellij-tile = { path = "../zellij-tile/", version = "0.29.1" }
log = "0.4.16"
log4rs = "1.0.0"
unicode-width = "0.1.8"
Expand Down

0 comments on commit a7ddfe1

Please sign in to comment.