chore(repo): update development version

This commit is contained in:
Aram Drevekenin 2025-08-05 11:01:18 +02:00
parent 23bb542548
commit 1398e1eefc
8 changed files with 17 additions and 15 deletions

View file

@ -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)

12
Cargo.lock generated
View file

@ -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",

View file

@ -1,6 +1,6 @@
[package]
name = "zellij"
version = "0.43.0"
version = "0.44.0"
authors = ["Aram Drevekenin <aram@poor.dev>"]
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"

View file

@ -1,6 +1,6 @@
[package]
name = "zellij-client"
version = "0.43.0"
version = "0.44.0"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "The client-side library for Zellij"

View file

@ -1,6 +1,6 @@
[package]
name = "zellij-server"
version = "0.43.0"
version = "0.44.0"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "The server-side library for Zellij"

View file

@ -1,6 +1,6 @@
[package]
name = "zellij-tile-utils"
version = "0.43.0"
version = "0.44.0"
authors = ["denis <denismaximov98@gmail.com>"]
edition = "2021"
description = "A utility library for Zellij plugins"

View file

@ -1,6 +1,6 @@
[package]
name = "zellij-tile"
version = "0.43.0"
version = "0.44.0"
authors = ["Brooks J Rady <b.j.rady@gmail.com>"]
edition = "2021"
description = "A small client-side library for writing Zellij plugins"

View file

@ -1,6 +1,6 @@
[package]
name = "zellij-utils"
version = "0.43.0"
version = "0.44.0"
authors = ["Kunal Mohan <kunalmohan99@gmail.com>"]
edition = "2021"
description = "A utility library for Zellij client and server"