diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f5f38b..ec76cf6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,6 @@ All notable changes to this project will be documented in this file. - Updated the following local packages: tui-big-text - ## [0.2.1] - 2024-07-25 ### 📚 Documentation @@ -24,7 +23,6 @@ All notable changes to this project will be documented in this file. - Update READMEs and licensing info - ## [0.2.0] - 2024-07-25 ### 🚀 Features @@ -79,14 +77,12 @@ All notable changes to this project will be documented in this file. - Include commit body in changelog - ## [0.1.5] - 2024-07-25 ### Other - Add tui-popup to widgets - ## [0.1.4] - 2024-07-24 ### 🐛 Bug Fixes @@ -99,15 +95,6 @@ All notable changes to this project will be documented in this file. - Various fixes / clippy lints ([#6](https://github.com/joshka/tui-widgets/pull/6)) - -# Changelog -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/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -## [Unreleased] - ## [0.1.3](https://github.com/joshka/tui-widgets/compare/tui-widgets-v0.1.2...tui-widgets-v0.1.3) - 2024-07-24 ### Fixed diff --git a/tui-big-text/CHANGELOG.md b/tui-big-text/CHANGELOG.md index d91f906..88dda35 100644 --- a/tui-big-text/CHANGELOG.md +++ b/tui-big-text/CHANGELOG.md @@ -8,7 +8,6 @@ All notable changes to this project will be documented in this file. - Update tui-big-text images - ## [0.5.1] - 2024-07-25 ### ⚙️ Miscellaneous Tasks @@ -18,7 +17,6 @@ All notable changes to this project will be documented in this file. - Update READMEs and licensing info - ## [0.5.0] - 2024-07-25 ### 🚀 Features @@ -67,14 +65,12 @@ All notable changes to this project will be documented in this file. - Simplify tui-big-text examples - ## [0.4.7] - 2024-07-24 ### ⚙️ Miscellaneous Tasks - Various fixes / clippy lints ([#6](https://github.com/joshka/tui-widgets/pull/6)) - ## [0.4.5] - 2024-06-25 ### ⚙️ Miscellaneous Tasks @@ -84,9 +80,6 @@ All notable changes to this project will be documented in this file. - Set msrv to 1.74 - Update git cliff config - -## [unreleased] - ## [0.4.6](https://github.com/joshka/tui-widgets/compare/tui-big-text-v0.4.5...tui-big-text-v0.4.6) - 2024-07-24 ### Other @@ -325,5 +318,3 @@ All notable changes to this project will be documented in this file. - Fix repository link ([#1](https://github.com/joshka/tui-big-text/issues/1)) - Release - - diff --git a/tui-popup/CHANGELOG.md b/tui-popup/CHANGELOG.md index 2483cc6..06840a0 100644 --- a/tui-popup/CHANGELOG.md +++ b/tui-popup/CHANGELOG.md @@ -8,7 +8,6 @@ All notable changes to this project will be documented in this file. - Update READMEs and licensing info - ## [0.4.3] - 2024-07-25 ### ⚙️ Miscellaneous Tasks @@ -19,14 +18,12 @@ All notable changes to this project will be documented in this file. - 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)) > > Co-authored-by: Josh McKinney - ## [0.4.1] - 2024-07-15 - [a909878](https://github.com/joshka/tui-popup/commit/a909878c5936e3f935b5f27e13ec160dc6a89242) chore(deps): bump document-features in the all-dependencies group ([#34](https://github.com/joshka/tui-popup/pull/34)) @@ -50,7 +47,6 @@ All notable changes to this project will be documented in this file. > Signed-off-by: dependabot[bot] > Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> - ## [0.4.0] - 2024-07-07 - [1c79c1c](https://github.com/joshka/tui-popup/commit/1c79c1c462520901443d44fe474d9bee474a4d61) feat!: remove title from Popup::new ([#31](https://github.com/joshka/tui-popup/pull/31)) @@ -79,7 +75,6 @@ All notable changes to this project will be documented in this file. > + PopupState::default().drag_state() > ``` - ## [0.3.4] - 2024-07-07 - [3433aec](https://github.com/joshka/tui-popup/commit/3433aec13d3ef3179b5bdf2267d9dd6e59407f95) chore(examples): simplify examples ([#27](https://github.com/joshka/tui-popup/pull/27)) @@ -107,33 +102,6 @@ All notable changes to this project will be documented in this file. - [eeeb8b1](https://github.com/joshka/tui-popup/commit/eeeb8b125ce9b1c1d1f591bc3e78b68cef33149d) ci: config git-cliff to better handle PR links - -## [unreleased] - -- [3433aec](https://github.com/joshka/tui-popup/commit/3433aec13d3ef3179b5bdf2267d9dd6e59407f95) chore(examples): simplify examples ([#27](https://github.com/joshka/tui-popup/issues/27)) - > - > - Move terminal setup / restore and error handling to module - > - Smaller more focused methods - > - Extract App struct for state example - -- [3a7fd10](https://github.com/joshka/tui-popup/commit/3a7fd10034ffef21a48b0cef9c3a0bbfaf65c8de) feat(mouse): add PopupState::handle_mouse_event() ([#29](https://github.com/joshka/tui-popup/issues/29)) - > - > Converts a crossterm mouse event into mouse movement. Requires the - > `crossterm` feature to be enabled. - > - > ```rust - > if let Event::Mouse(event) = event::read()? { - > popup_state.handle_mouse_event(event); - > } - > ``` - -- [c89b142](https://github.com/joshka/tui-popup/commit/c89b14292a17f0184cd3a2c6109c2d952a42b0a3) chore: create git cliff config ([#30](https://github.com/joshka/tui-popup/issues/30)) - > - -- [29008c4](https://github.com/joshka/tui-popup/commit/29008c4695e8fd38ea6398ae7cfee3d0fa1bcb03) chore: update changelog - -- [81dcd7f](https://github.com/joshka/tui-popup/commit/81dcd7f89339fc99e8807c8aaade4a0c29c16a89) chore: use cliff.toml in release.plz - ## [0.3.3] - 2024-06-25 - [4cd3786](https://github.com/joshka/tui-popup/commit/4cd3786d195f315974d1ad3fbfb3f8c8211c7748) chore(deps): bump ratatui in the all-dependencies group ([#25](https://github.com/joshka/tui-popup/issues/25)) @@ -346,5 +314,3 @@ All notable changes to this project will be documented in this file. - [d4322d8](https://github.com/joshka/tui-popup/commit/d4322d8b35298c27b5b26d614a64dd3e814fe4f1) docs: update readme and demo - [aad723f](https://github.com/joshka/tui-popup/commit/aad723f835ade62a4f76da43917e504f230799e8) ci: add release-plz and CI - - diff --git a/tui-prompts/CHANGELOG.md b/tui-prompts/CHANGELOG.md index 65f5dcc..b08069e 100644 --- a/tui-prompts/CHANGELOG.md +++ b/tui-prompts/CHANGELOG.md @@ -8,7 +8,6 @@ All notable changes to this project will be documented in this file. - Update READMEs and licensing info - ## [0.3.18] - 2024-07-24 ### 🐛 Bug Fixes @@ -22,15 +21,6 @@ All notable changes to this project will be documented in this file. - Move to tui-widgets repository - Various fixes / clippy lints ([#6](https://github.com/joshka/tui-widgets/pull/6)) - -# Changelog -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/), -and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). - -## [Unreleased] - ## [0.3.14](https://github.com/joshka/tui-prompts/compare/v0.3.13...v0.3.14) - 2024-07-02 ### Other diff --git a/tui-scrollview/CHANGELOG.md b/tui-scrollview/CHANGELOG.md index e53d658..45afe0c 100644 --- a/tui-scrollview/CHANGELOG.md +++ b/tui-scrollview/CHANGELOG.md @@ -8,21 +8,18 @@ All notable changes to this project will be documented in this file. - Update READMEs and licensing info - ## [0.3.10] - 2024-07-25 ### 🐛 Bug Fixes - Use ratatui::crossterm instead of crossterm:: - ## [0.3.9] - 2024-07-24 ### ⚙️ Miscellaneous Tasks - Various fixes / clippy lints ([#6](https://github.com/joshka/tui-widgets/pull/6)) - ## [0.3.8](https://github.com/joshka/tui-widgets/compare/tui-scrollview-v0.3.7...tui-scrollview-v0.3.8) - 2024-07-24 ### Other @@ -36,7 +33,6 @@ All notable changes to this project will be documented in this file. - *(deps)* Bump rstest in the all-dependencies group ([#34](https://github.com/joshka/tui-scrollview/pull/34)) - *(deps)* Bump ratatui in the all-dependencies group ([#36](https://github.com/joshka/tui-scrollview/pull/36)) - ## [0.3.6] - 2024-05-21 ### 📚 Documentation @@ -52,7 +48,6 @@ All notable changes to this project will be documented in this file. - --- ([#33](https://github.com/joshka/tui-scrollview/pull/33)) - ## [0.3.5] - 2024-04-26 ### 🚀 Features @@ -206,6 +201,3 @@ All notable changes to this project will be documented in this file. ### Other - Initial implementation - - -