diff --git a/CHANGELOG.md b/CHANGELOG.md index dace1c3..cb4386a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.1](https://github.com/drewzemke/tixel/compare/v0.2.0...v0.2.1) - 2026-04-29 + +### Added + +- *(half-cell)* add `HalfCellCanvas::render_to` that renders to `&mut String` +- *(braille)* add `BrailleCanvas::render_to` that renders to `&mut String` + ## [0.2.0](https://github.com/drewzemke/tixel/compare/v0.1.1...v0.2.0) - 2026-04-25 ### Added diff --git a/Cargo.lock b/Cargo.lock index 6699ef1..c2773e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -812,7 +812,7 @@ dependencies = [ [[package]] name = "tixel" -version = "0.2.0" +version = "0.2.1" dependencies = [ "anyhow", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 2309cc0..ad397af 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tixel" -version = "0.2.0" +version = "0.2.1" edition = "2024" description = "A terminal renderer." license = "GPL-3.0-only"