diff --git a/CHANGELOG.md b/CHANGELOG.md index 7052b8676..81d1d88bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) ## [Unreleased] -## [0.34.2] - 2022-12-09 +## [0.34.3] - 2022-12-09 * (BREAKING CHANGE) performance: change plugin data flow to improve render speed (https://github.com/zellij-org/zellij/pull/1934) * (BREAKING CHANGE) performance: various render pipeline improvements (https://github.com/zellij-org/zellij/pull/1960) diff --git a/Cargo.toml b/Cargo.toml index ca5f13cf9..ce9f12552 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij" -version = "0.34.2" +version = "0.34.3" 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.2" } -zellij-server = { path = "zellij-server/", version = "0.34.2" } -zellij-utils = { path = "zellij-utils/", version = "0.34.2" } +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" } log = "0.4.17" dialoguer = "0.10.1" suggest = "0.4" diff --git a/zellij-client/Cargo.toml b/zellij-client/Cargo.toml index d1f2fcc52..e091d3cef 100644 --- a/zellij-client/Cargo.toml +++ b/zellij-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-client" -version = "0.34.2" +version = "0.34.3" 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.2" } +zellij-utils = { path = "../zellij-utils/", version = "0.34.3" } log = "0.4.17" [dev-dependencies] diff --git a/zellij-server/Cargo.toml b/zellij-server/Cargo.toml index 8ee97fc5e..460c1e351 100644 --- a/zellij-server/Cargo.toml +++ b/zellij-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-server" -version = "0.34.2" +version = "0.34.3" 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.2" } +zellij-utils = { path = "../zellij-utils/", version = "0.34.3" } 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 172169eb6..d7d064dba 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.2" +version = "0.34.3" authors = ["denis "] edition = "2021" description = "A utility library for Zellij plugins" diff --git a/zellij-tile/Cargo.toml b/zellij-tile/Cargo.toml index a176b7c28..08b335d51 100644 --- a/zellij-tile/Cargo.toml +++ b/zellij-tile/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile" -version = "0.34.2" +version = "0.34.3" 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.2" } +zellij-utils = { path = "../zellij-utils/", version = "0.34.3" } diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml index d757eff8f..662415bc4 100644 --- a/zellij-utils/Cargo.toml +++ b/zellij-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-utils" -version = "0.34.2" +version = "0.34.3" authors = ["Kunal Mohan "] edition = "2021" description = "A utility library for Zellij client and server"