From f5715d90d90c4fae690035a0c62545a965783be6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Drew=20Dele=C3=B3n-Zemke?= <108838432+drewzemke@users.noreply.github.com> Date: Fri, 24 Apr 2026 20:53:18 -0700 Subject: [PATCH] chore: release v0.2.0 --- CHANGELOG.md | 19 +++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) 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"