From 2e804a6d7ea85ae07538f179a702c00c3604a7c6 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 12 Apr 2024 19:03:54 +0000 Subject: [PATCH 1/2] chore: release --- CHANGELOG.md | 14 ++++++++++++++ Cargo.toml | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17ee69b..26610a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,20 @@ All notable changes to this project will be documented in this file. +## [0.4.3](https://github.com/joshka/tui-big-text/releases/tag/0.4.3) - 2024-04-12 + +### Features + +- [e38a2df](https://github.com/joshka/tui-big-text/commit/e38a2df53458e24ac5d83f4894f812931eaa8b7a) + Add alignment support for BigText ([#41](https://github.com/joshka/tui-big-text/pull/41)) + + ````text + Added alignment field to BigText along with updating the layout function to create a layout that produces the given alignment. The default value of the alignment is Alignment::Left which will not change the current behavior. + ```` + + + + ## [0.4.2](https://github.com/joshka/tui-big-text/releases/tag/0.4.2) - 2024-02-26 ### Documentation diff --git a/Cargo.toml b/Cargo.toml index 2159c6b..6facc89 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tui-big-text" -version = "0.4.2" +version = "0.4.3" edition = "2021" description = "A simple Ratatui widget for displaying big text using the font8x8 crate in a TUI (Terminal UI)." license = "MIT OR Apache-2.0" From ca8a3b17e66385ccdfe36cbafbf5303b0a11ee60 Mon Sep 17 00:00:00 2001 From: Josh McKinney Date: Fri, 12 Apr 2024 12:09:07 -0700 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 26610a9..cd813c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,7 +10,10 @@ All notable changes to this project will be documented in this file. Add alignment support for BigText ([#41](https://github.com/joshka/tui-big-text/pull/41)) ````text - Added alignment field to BigText along with updating the layout function to create a layout that produces the given alignment. The default value of the alignment is Alignment::Left which will not change the current behavior. + Added alignment field to BigText along with updating the layout + function to create a layout that produces the given alignment. + The default value of the alignment is Alignment::Left which will + not change the current behavior. ````