From 777cd9ff4187692e8606c43d105b812625c4a981 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Drew=20Dele=C3=B3n-Zemke?= <108838432+drewzemke@users.noreply.github.com> Date: Sun, 14 Jun 2026 17:56:52 -0700 Subject: [PATCH] chore: release v0.3.0 --- CHANGELOG.md | 8 ++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index cb4386a..4237af0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0](https://github.com/drewzemke/tixel/compare/v0.2.1...v0.3.0) - 2026-06-15 + +### Added + +- *(color)* add `Color::from_hsl` +- [**breaking**] store and accept dimensions as (col,row) rather than (row,col) +- *(half-cell)* `set_color` doesn't panic on OOB input + ## [0.2.1](https://github.com/drewzemke/tixel/compare/v0.2.0...v0.2.1) - 2026-04-29 ### Added diff --git a/Cargo.lock b/Cargo.lock index c2773e9..d0ea704 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -812,7 +812,7 @@ dependencies = [ [[package]] name = "tixel" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "criterion", diff --git a/Cargo.toml b/Cargo.toml index ad397af..b26e755 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tixel" -version = "0.2.1" +version = "0.3.0" edition = "2024" description = "A terminal renderer." license = "GPL-3.0-only"