diff --git a/CHANGELOG.md b/CHANGELOG.md index 2712f606..5c6e0c04 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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.43.0] - 2025-08-05 * feat: multiple select and bulk pane actions (https://github.com/zellij-org/zellij/pull/4169 and https://github.com/zellij-org/zellij/pull/4171, https://github.com/zellij-org/zellij/pull/4221 and https://github.com/zellij-org/zellij/pull/4286) * feat: add an optional key tooltip to show the current keybindings for the compact bar (https://github.com/zellij-org/zellij/pull/4225 and https://github.com/zellij-org/zellij/pull/4279) * feat: web-client, allowing users to share sessions in the browser (https://github.com/zellij-org/zellij/pull/4242, https://github.com/zellij-org/zellij/pull/4257 and https://github.com/zellij-org/zellij/pull/4278) diff --git a/Cargo.lock b/Cargo.lock index 22ae60e6..d0beddc6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5753,7 +5753,7 @@ dependencies = [ [[package]] name = "zellij" -version = "0.43.0" +version = "0.44.0" dependencies = [ "anyhow", "clap", @@ -5779,7 +5779,7 @@ dependencies = [ [[package]] name = "zellij-client" -version = "0.43.0" +version = "0.44.0" dependencies = [ "anyhow", "axum", @@ -5819,7 +5819,7 @@ dependencies = [ [[package]] name = "zellij-server" -version = "0.43.0" +version = "0.44.0" dependencies = [ "ansi_term", "anyhow", @@ -5865,7 +5865,7 @@ dependencies = [ [[package]] name = "zellij-tile" -version = "0.43.0" +version = "0.44.0" dependencies = [ "clap", "prost", @@ -5878,14 +5878,14 @@ dependencies = [ [[package]] name = "zellij-tile-utils" -version = "0.43.0" +version = "0.44.0" dependencies = [ "ansi_term", ] [[package]] name = "zellij-utils" -version = "0.43.0" +version = "0.44.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 5a70e54c..6a2617e3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij" -version = "0.43.0" +version = "0.44.0" authors = ["Aram Drevekenin "] edition = "2021" description = "A terminal workspace with batteries included" @@ -14,8 +14,8 @@ rust-version = "1.84" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -zellij-client = { path = "zellij-client/", version = "0.43.0" } -zellij-server = { path = "zellij-server/", version = "0.43.0" } +zellij-client = { path = "zellij-client/", version = "0.44.0" } +zellij-server = { path = "zellij-server/", version = "0.44.0" } zellij-utils = { workspace = true } anyhow = { workspace = true } clap = { workspace = true } @@ -96,7 +96,7 @@ names = { version = "0.14.0", default-features = false } include_dir = { version = "0.7.3", default-features = false } rmp-serde = { version = "1.1.0", default-features = false } sha2 = { version = "0.10", default-features = false } -zellij-utils = { path = "zellij-utils/", version = "0.43.0" } +zellij-utils = { path = "zellij-utils/", version = "0.44.0" } [profile.dev-opt] inherits = "dev" diff --git a/zellij-client/Cargo.toml b/zellij-client/Cargo.toml index 0aba55c7..970799e6 100644 --- a/zellij-client/Cargo.toml +++ b/zellij-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-client" -version = "0.43.0" +version = "0.44.0" authors = ["Kunal Mohan "] edition = "2021" description = "The client-side library for Zellij" diff --git a/zellij-server/Cargo.toml b/zellij-server/Cargo.toml index 5477211b..9085d371 100644 --- a/zellij-server/Cargo.toml +++ b/zellij-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-server" -version = "0.43.0" +version = "0.44.0" authors = ["Kunal Mohan "] edition = "2021" description = "The server-side library for Zellij" diff --git a/zellij-tile-utils/Cargo.toml b/zellij-tile-utils/Cargo.toml index e2749609..403d485a 100644 --- a/zellij-tile-utils/Cargo.toml +++ b/zellij-tile-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile-utils" -version = "0.43.0" +version = "0.44.0" authors = ["denis "] edition = "2021" description = "A utility library for Zellij plugins" diff --git a/zellij-tile/Cargo.toml b/zellij-tile/Cargo.toml index ab543e56..3cd09527 100644 --- a/zellij-tile/Cargo.toml +++ b/zellij-tile/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile" -version = "0.43.0" +version = "0.44.0" authors = ["Brooks J Rady "] 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 f807ce07..34c8a1fb 100644 --- a/zellij-utils/Cargo.toml +++ b/zellij-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-utils" -version = "0.43.0" +version = "0.44.0" authors = ["Kunal Mohan "] edition = "2021" description = "A utility library for Zellij client and server"