From 962f37e7670d77cbffe83578d850869f94b1c424 Mon Sep 17 00:00:00 2001 From: Andreas Hartmann Date: Tue, 13 Dec 2022 14:59:49 +0100 Subject: [PATCH] chore: Bump development versions --- CHANGELOG.md | 2 ++ Cargo.toml | 8 ++++---- zellij-client/Cargo.toml | 4 ++-- zellij-server/Cargo.toml | 4 ++-- zellij-tile-utils/Cargo.toml | 2 +- zellij-tile/Cargo.toml | 4 ++-- zellij-utils/Cargo.toml | 2 +- 7 files changed, 14 insertions(+), 12 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 081121ef8..69a15e032 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] +## [0.34.4] - 2022-12-13 + * hotfix: fix panics when resizing with flexible plugin panes in layout (https://github.com/zellij-org/zellij/pull/2019) * hotfix: allow non-absolute `SHELL` variables (https://github.com/zellij-org/zellij/pull/2013) diff --git a/Cargo.toml b/Cargo.toml index ce9f12552..a1b93a912 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij" -version = "0.34.3" +version = "0.34.4" authors = ["Aram Drevekenin "] edition = "2021" description = "A terminal workspace with batteries included" @@ -17,9 +17,9 @@ anyhow = "1.0" thiserror = "1.0.30" names = { version = "0.13.0", default-features = false } miette = { version = "3.3.0", features = ["fancy"] } -zellij-client = { path = "zellij-client/", version = "0.34.3" } -zellij-server = { path = "zellij-server/", version = "0.34.3" } -zellij-utils = { path = "zellij-utils/", version = "0.34.3" } +zellij-client = { path = "zellij-client/", version = "0.34.4" } +zellij-server = { path = "zellij-server/", version = "0.34.4" } +zellij-utils = { path = "zellij-utils/", version = "0.34.4" } log = "0.4.17" dialoguer = "0.10.1" suggest = "0.4" diff --git a/zellij-client/Cargo.toml b/zellij-client/Cargo.toml index e091d3cef..42493d221 100644 --- a/zellij-client/Cargo.toml +++ b/zellij-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-client" -version = "0.34.3" +version = "0.34.4" authors = ["Kunal Mohan "] edition = "2021" description = "The client-side library for Zellij" @@ -13,7 +13,7 @@ mio = { version = "0.7.11", features = ['os-ext'] } serde = { version = "1.0", features = ["derive"] } url = { version = "2.2.2", features = ["serde"] } serde_yaml = "0.8" -zellij-utils = { path = "../zellij-utils/", version = "0.34.3" } +zellij-utils = { path = "../zellij-utils/", version = "0.34.4" } log = "0.4.17" [dev-dependencies] diff --git a/zellij-server/Cargo.toml b/zellij-server/Cargo.toml index 460c1e351..2e8111b45 100644 --- a/zellij-server/Cargo.toml +++ b/zellij-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-server" -version = "0.34.3" +version = "0.34.4" authors = ["Kunal Mohan "] edition = "2021" description = "The server-side library for Zellij" @@ -21,7 +21,7 @@ url = "2.2.2" wasmer = "2.3.0" wasmer-wasi = "2.3.0" cassowary = "0.3.0" -zellij-utils = { path = "../zellij-utils/", version = "0.34.3" } +zellij-utils = { path = "../zellij-utils/", version = "0.34.4" } log = "0.4.17" typetag = "0.1.7" chrono = "0.4.19" diff --git a/zellij-tile-utils/Cargo.toml b/zellij-tile-utils/Cargo.toml index d7d064dba..635150aad 100644 --- a/zellij-tile-utils/Cargo.toml +++ b/zellij-tile-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile-utils" -version = "0.34.3" +version = "0.34.4" authors = ["denis "] edition = "2021" description = "A utility library for Zellij plugins" diff --git a/zellij-tile/Cargo.toml b/zellij-tile/Cargo.toml index 08b335d51..b6afbf004 100644 --- a/zellij-tile/Cargo.toml +++ b/zellij-tile/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile" -version = "0.34.3" +version = "0.34.4" authors = ["Brooks J Rady "] edition = "2021" description = "A small client-side library for writing Zellij plugins" @@ -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.34.3" } +zellij-utils = { path = "../zellij-utils/", version = "0.34.4" } diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml index 662415bc4..5c4f98044 100644 --- a/zellij-utils/Cargo.toml +++ b/zellij-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-utils" -version = "0.34.3" +version = "0.34.4" authors = ["Kunal Mohan "] edition = "2021" description = "A utility library for Zellij client and server"