diff --git a/CHANGELOG.md b/CHANGELOG.md index 25901a1..dace1c3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,25 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.2.0](https://github.com/drewzemke/tixel/compare/v0.1.1...v0.2.0) - 2026-04-25 + +### Added + +- *(color)* expand color to support rgb and ansi colors +- braille renderer supports background color +- braille renderer supports color +- braille renderer supports offset +- add first impl of braille renderer + +### Fixed + +- *(braille)* don't render out-of-bounds pixels + +### Other + +- add some tests for braille renderer +- separate into modules + ## [0.1.1](https://github.com/drewzemke/tixel/compare/v0.1.0...v0.1.1) - 2026-04-15 ### Added diff --git a/Cargo.lock b/Cargo.lock index 385b1dc..6699ef1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -812,7 +812,7 @@ dependencies = [ [[package]] name = "tixel" -version = "0.1.1" +version = "0.2.0" dependencies = [ "anyhow", "criterion", diff --git a/Cargo.toml b/Cargo.toml index 575c0bd..2309cc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tixel" -version = "0.1.1" +version = "0.2.0" edition = "2024" description = "A terminal renderer." license = "GPL-3.0-only"