From fba273eebbdc98ce9570ab2dd9913d31610b1707 Mon Sep 17 00:00:00 2001 From: Aram Drevekenin Date: Fri, 9 Dec 2022 12:01:20 +0100 Subject: [PATCH] chore(version): patch version due to CI difficulties --- 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, 13 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9e6ec6bd..7052b867 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.1] - 2022-12-09 +## [0.34.2] - 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 9cd0fda0..ca5f13cf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij" -version = "0.34.1" +version = "0.34.2" 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.1" } -zellij-server = { path = "zellij-server/", version = "0.34.1" } -zellij-utils = { path = "zellij-utils/", version = "0.34.1" } +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" } log = "0.4.17" dialoguer = "0.10.1" suggest = "0.4" diff --git a/zellij-client/Cargo.toml b/zellij-client/Cargo.toml index 1bcb473f..d1f2fcc5 100644 --- a/zellij-client/Cargo.toml +++ b/zellij-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-client" -version = "0.34.1" +version = "0.34.2" 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.1" } +zellij-utils = { path = "../zellij-utils/", version = "0.34.2" } log = "0.4.17" [dev-dependencies] diff --git a/zellij-server/Cargo.toml b/zellij-server/Cargo.toml index 1240a8b7..8ee97fc5 100644 --- a/zellij-server/Cargo.toml +++ b/zellij-server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-server" -version = "0.34.1" +version = "0.34.2" 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.1" } +zellij-utils = { path = "../zellij-utils/", version = "0.34.2" } 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 1f715509..172169eb 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.1" +version = "0.34.2" authors = ["denis "] edition = "2021" description = "A utility library for Zellij plugins" diff --git a/zellij-tile/Cargo.toml b/zellij-tile/Cargo.toml index 9b64afb8..a176b7c2 100644 --- a/zellij-tile/Cargo.toml +++ b/zellij-tile/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile" -version = "0.34.1" +version = "0.34.2" 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.1" } +zellij-utils = { path = "../zellij-utils/", version = "0.34.2" } diff --git a/zellij-utils/Cargo.toml b/zellij-utils/Cargo.toml index 1ad3c8b3..d757eff8 100644 --- a/zellij-utils/Cargo.toml +++ b/zellij-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-utils" -version = "0.34.1" +version = "0.34.2" authors = ["Kunal Mohan "] edition = "2021" description = "A utility library for Zellij client and server"