diff --git a/CHANGELOG.md b/CHANGELOG.md index 488fe460..8237e919 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.10.0] - 2021-05-14 * Change Switch default config loading order of `HOME` and system (https://github.com/zellij-org/zellij/pull/488) * Add support for requesting a simpler layout from plugins, move `clean` flag from `options` to `setup` (https://github.com/zellij-org/zellij/pull/479) * Improve config loading slightly (https://github.com/zellij-org/zellij/pull/492) diff --git a/Cargo.lock b/Cargo.lock index a036b8d7..39c1dad2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2254,7 +2254,7 @@ dependencies = [ [[package]] name = "zellij" -version = "0.10.0" +version = "0.11.0" dependencies = [ "ansi_term 0.12.1", "async-std", @@ -2290,7 +2290,7 @@ dependencies = [ [[package]] name = "zellij-tile" -version = "0.8.0" +version = "0.11.0" dependencies = [ "serde", "serde_json", @@ -2300,7 +2300,7 @@ dependencies = [ [[package]] name = "zellij-tile-utils" -version = "0.7.0" +version = "0.11.0" dependencies = [ "ansi_term 0.12.1", ] diff --git a/Cargo.toml b/Cargo.toml index 230b7ebe..b2faa935 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij" -version = "0.10.0" +version = "0.11.0" authors = ["Aram Drevekenin "] edition = "2018" description = "A terminal workspace with batteries included" @@ -38,7 +38,7 @@ wasmer-wasi = "1.0.0" interprocess = "1.1.1" names = "0.11.0" colors-transform = "0.2.5" -zellij-tile = { path = "zellij-tile/", version = "0.8.0" } +zellij-tile = { path = "zellij-tile/", version = "0.11.0" } [dependencies.async-std] version = "1.3.0" diff --git a/zellij-tile-utils/Cargo.toml b/zellij-tile-utils/Cargo.toml index a625eea9..cee6df30 100644 --- a/zellij-tile-utils/Cargo.toml +++ b/zellij-tile-utils/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile-utils" -version = "0.7.0" +version = "0.11.0" authors = ["denis "] edition = "2018" description = "A utility library for Zellij plugins" diff --git a/zellij-tile/Cargo.toml b/zellij-tile/Cargo.toml index d1e9b18e..60d30021 100644 --- a/zellij-tile/Cargo.toml +++ b/zellij-tile/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zellij-tile" -version = "0.8.0" +version = "0.11.0" authors = ["Brooks J Rady "] edition = "2018" description = "A small client-side library for writing Zellij plugins"