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"