Skip to content

Commit

Permalink
chore(version): adjust version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
imsnif committed May 2, 2024
1 parent 3bac38c commit d81bda0
Show file tree
Hide file tree
Showing 8 changed files with 20 additions and 18 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.40.1] - 2024-05-02
* fix(sessions): issue where sessions would occasionally become unresponsive (https://github.com/zellij-org/zellij/pull/3281)
* fix(cli): respect all options (eg. `default-layout`) when creating a session in the background from the CLI (https://github.com/zellij-org/zellij/pull/3288)
* fix(cli): rename tab and pane from cli (https://github.com/zellij-org/zellij/pull/3295)
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.41.0"
version = "0.40.1"
authors = ["Aram Drevekenin <[email protected]>"]
edition = "2021"
description = "A terminal workspace with batteries included"
Expand All @@ -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.41.0" }
zellij-server = { path = "zellij-server/", version = "0.41.0" }
zellij-utils = { path = "zellij-utils/", version = "0.41.0" }
zellij-client = { path = "zellij-client/", version = "0.40.1" }
zellij-server = { path = "zellij-server/", version = "0.40.1" }
zellij-utils = { path = "zellij-utils/", version = "0.40.1" }
thiserror = "1.0.40"
names = { version = "0.14.0", default-features = false }
log = "0.4.17"
Expand Down
4 changes: 2 additions & 2 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.41.0"
version = "0.40.1"
authors = ["Kunal Mohan <[email protected]>"]
edition = "2021"
description = "The client-side library for Zellij"
Expand All @@ -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.41.0" }
zellij-utils = { path = "../zellij-utils/", version = "0.40.1" }
log = "0.4.17"

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

0 comments on commit d81bda0

Please sign in to comment.