diff --git a/CHANGELOG.md b/CHANGELOG.md index 44bd1de..a35e738 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,25 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). ## [Unreleased] +## [0.3.4] - 2026-03-08 + +### Bug Fixes + +- Fix focus change in color-picker + +### Other + +- *(CI)* Add benchmark CI job + +### Refactor + +- Gate bench_support behind feature flag + +### Testing + +- *(ui)* Add UI snapshot tests for the TUI components +- *(ui)* Add dummy test data generator +- Add benchmarks for ui hotspots ## [0.3.3] - 2026-03-04 ### Features diff --git a/Cargo.lock b/Cargo.lock index 618443b..a240671 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1456,7 +1456,7 @@ dependencies = [ [[package]] name = "gitv-tui" -version = "0.3.3" +version = "0.3.4" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index b84caf5..8d99e7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitv-tui" -version = "0.3.3" +version = "0.3.4" edition = "2024" build = "build.rs" description = "A terminal-based GitHub client built with Rust and Ratatui."