From a440b4e4f0016d5b3ff78abacb992f1f0bc30146 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 24 Jul 2024 19:27:56 -0700 Subject: [PATCH] chore: release (#11) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## 🤖 New release * `tui-popup`: 0.4.2 -> 0.4.3 * `tui-scrollview`: 0.3.9 -> 0.3.10 * `tui-widgets`: 0.1.4 -> 0.1.5
Changelog

## `tui-popup`

## [0.4.3] - 2024-07-25 ### ⚙️ Miscellaneous Tasks - Move tui-popup to its own directory ### Other - Add tui-popup to widgets
## `tui-scrollview`
## [0.3.10] - 2024-07-25 ### 🐛 Bug Fixes - Use ratatui::crossterm instead of crossterm::
## `tui-widgets`
## [0.1.5] - 2024-07-25 ### Other - Add tui-popup to widgets

--- This PR was generated with [release-plz](https://github.com/MarcoIeni/release-plz/). Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> --- CHANGELOG.md | 7 +++++++ Cargo.toml | 6 +++--- tui-popup/CHANGELOG.md | 11 +++++++++++ tui-popup/Cargo.toml | 2 +- tui-scrollview/CHANGELOG.md | 7 +++++++ tui-scrollview/Cargo.toml | 2 +- 6 files changed, 30 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5a26ba7..4e019c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [0.1.5] - 2024-07-25 + +### Other + +- Add tui-popup to widgets + + ## [0.1.4] - 2024-07-24 ### 🐛 Bug Fixes diff --git a/Cargo.toml b/Cargo.toml index c396130..4fee92f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -42,7 +42,7 @@ nursery = "warn" [package] name = "tui-widgets" description = "A collection of useful widgets for building terminal user interfaces using Ratatui" -version = "0.1.4" +version = "0.1.5" documentation = "https://docs.rs/tui-widgets" authors.workspace = true @@ -70,6 +70,6 @@ scrollview = ["tui-scrollview"] document-features.workspace = true ratatui = { workspace = true } tui-big-text = { version = "0.4.7", path = "tui-big-text", optional = true } -tui-popup = { version = "0.4.2", path = "tui-popup", optional = true } +tui-popup = { version = "0.4.3", path = "tui-popup", optional = true } tui-prompts = { version = "0.3.18", path = "tui-prompts", optional = true } -tui-scrollview = { version = "0.3.9", path = "tui-scrollview", optional = true } +tui-scrollview = { version = "0.3.10", path = "tui-scrollview", optional = true } diff --git a/tui-popup/CHANGELOG.md b/tui-popup/CHANGELOG.md index 988ffdb..1ff5cda 100644 --- a/tui-popup/CHANGELOG.md +++ b/tui-popup/CHANGELOG.md @@ -2,6 +2,17 @@ All notable changes to this project will be documented in this file. +## [0.4.3] - 2024-07-25 + +### ⚙️ Miscellaneous Tasks + +- Move tui-popup to its own directory + +### Other + +- Add tui-popup to widgets + + ## [0.4.2] - 2024-07-23 - [ef2989b](https://github.com/joshka/tui-popup/commit/ef2989b9e22df64602600ed0f50113d1f7ae9230) feat: add border_set and border_style ([#36](https://github.com/joshka/tui-popup/pull/36)) diff --git a/tui-popup/Cargo.toml b/tui-popup/Cargo.toml index 61e6373..b69ad0d 100644 --- a/tui-popup/Cargo.toml +++ b/tui-popup/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tui-popup" -version = "0.4.2" +version = "0.4.3" description = "A simple popup for ratatui" documentation = "https://docs.rs/tui-popup" diff --git a/tui-scrollview/CHANGELOG.md b/tui-scrollview/CHANGELOG.md index 8d5e8da..8d02d90 100644 --- a/tui-scrollview/CHANGELOG.md +++ b/tui-scrollview/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [0.3.10] - 2024-07-25 + +### 🐛 Bug Fixes + +- Use ratatui::crossterm instead of crossterm:: + + ## [0.3.9] - 2024-07-24 ### ⚙️ Miscellaneous Tasks diff --git a/tui-scrollview/Cargo.toml b/tui-scrollview/Cargo.toml index 8ad59c7..eb26188 100644 --- a/tui-scrollview/Cargo.toml +++ b/tui-scrollview/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tui-scrollview" -version = "0.3.9" +version = "0.3.10" description = "A simple scrollable view for Ratatui" authors.workspace = true