From 7556997e85260b55faa33863ad6de7cae506e9fa Mon Sep 17 00:00:00 2001 From: JayanAXHF Date: Wed, 4 Mar 2026 21:38:29 +0530 Subject: [PATCH 1/2] chore(release-plz): add release-plz.toml --- release-plz.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 release-plz.toml diff --git a/release-plz.toml b/release-plz.toml new file mode 100644 index 0000000..066aebb --- /dev/null +++ b/release-plz.toml @@ -0,0 +1,2 @@ +[workspace] +changelog_config = "cliff.toml" From fbad7fd0928b402a52d9399abff410e00aef9bc5 Mon Sep 17 00:00:00 2001 From: Jayan Sunil <73993003+JayanAXHF@users.noreply.github.com> Date: Wed, 4 Mar 2026 21:40:57 +0530 Subject: [PATCH 2/2] chore(gitv-tui): release v0.3.3 --- CHANGELOG.md | 24 ++++++++++++++++++++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 14edf38..14d1456 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,30 @@ 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.3] - 2026-03-04 + +### Features + +- *(nix)* Add devshell, package derivation, flake +- *(branding)* Add a logo + +### Bug Fixes + +- Fix non-flake install instructions + +### Documentation + +- Add install instructions for homebrew +- Update usage in readme + +### Performance + +- Refactor the code to use interning and deduplication to reduce CPU usage by over 300% + +### Miscellaneous Tasks + +- *(changelog)* Add cliff.toml +- *(release-plz)* Add release-plz.toml ## [0.3.2](https://github.com/JayanAXHF/gitv/compare/gitv-tui-v0.3.1...gitv-tui-v0.3.2) - 2026-02-26 diff --git a/Cargo.lock b/Cargo.lock index 5ab3da0..565b009 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1321,7 +1321,7 @@ dependencies = [ [[package]] name = "gitv-tui" -version = "0.3.2" +version = "0.3.3" dependencies = [ "anyhow", "async-trait", diff --git a/Cargo.toml b/Cargo.toml index a4ae02e..9dc4fc8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitv-tui" -version = "0.3.2" +version = "0.3.3" edition = "2024" build = "build.rs" description = "A terminal-based GitHub client built with Rust and Ratatui."