Skip to content

Commit

Permalink
chore(release): v0.39.1
Browse files Browse the repository at this point in the history
  • Loading branch information
imsnif committed Nov 13, 2023
1 parent 4756c21 commit ebcf359
Show file tree
Hide file tree
Showing 14 changed files with 21 additions and 19 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,16 @@ 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)
* fix(panes): reuse CWD when dropping to shell in command panes (https://github.com/zellij-org/zellij/pull/2915)
* 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)
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.40.0"
version = "0.39.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.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"
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.40.0"
version = "0.39.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.40.0" }
zellij-utils = { path = "../zellij-utils/", version = "0.39.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.40.0"
version = "0.39.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.40.0" }
zellij-utils = { path = "../zellij-utils/", version = "0.39.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.40.0"
version = "0.39.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.40.0"
version = "0.39.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.40.0" }
zellij-utils = { path = "../zellij-utils/", version = "0.39.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.40.0"
version = "0.39.1"
authors = ["Kunal Mohan <[email protected]>"]
edition = "2021"
description = "A utility library for Zellij client and server"
Expand Down
Binary file modified zellij-utils/assets/plugins/compact-bar.wasm
Binary file not shown.
Binary file modified zellij-utils/assets/plugins/fixture-plugin-for-tests.wasm
Binary file not shown.
Binary file modified zellij-utils/assets/plugins/session-manager.wasm
Binary file not shown.
Binary file modified zellij-utils/assets/plugins/status-bar.wasm
Binary file not shown.
Binary file modified zellij-utils/assets/plugins/strider.wasm
Binary file not shown.
Binary file modified zellij-utils/assets/plugins/tab-bar.wasm
Binary file not shown.

0 comments on commit ebcf359

Please sign in to comment.