diff --git a/CHANGELOG.md b/CHANGELOG.md index 17ee69b..cd813c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,23 @@ 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"