From e21fc41018ab658ec34fb36d385cdd556f07738a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Drew=20Dele=C3=B3n-Zemke?= <108838432+drewzemke@users.noreply.github.com> Date: Sun, 21 Jun 2026 11:25:47 -0700 Subject: [PATCH] chore: release v0.3.1 --- CHANGELOG.md | 15 +++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4237af0..bf662c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.1](https://github.com/drewzemke/tixel/compare/v0.3.0...v0.3.1) - 2026-06-21 + +### Added + +- *(braille)* allow disabling clearing after renderer + +### Fixed + +- *(half-cell)* correctly render scenes without all cells filled + +### Other + +- *(braille)* track dirty cells and skip rendering to unoccupied ones +- *(example)* add fps counter to particles example + ## [0.3.0](https://github.com/drewzemke/tixel/compare/v0.2.1...v0.3.0) - 2026-06-15 ### Added diff --git a/Cargo.lock b/Cargo.lock index d0ea704..aa63277 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -812,7 +812,7 @@ dependencies = [ [[package]] name = "tixel" -version = "0.3.0" +version = "0.3.1" dependencies = [ "anyhow", "criterion", diff --git a/Cargo.toml b/Cargo.toml index b26e755..9c60f47 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tixel" -version = "0.3.0" +version = "0.3.1" edition = "2024" description = "A terminal renderer." license = "GPL-3.0-only"