From 66b42f924f6c9117e02d8c27c0a6bc815cb184a5 Mon Sep 17 00:00:00 2001 From: Jayan Sunil <73993003+JayanAXHF@users.noreply.github.com> Date: Fri, 20 Mar 2026 18:18:48 +0530 Subject: [PATCH] chore: release --- CHANGELOG.md | 22 ++++++++++++++++++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- crates/ratatui-toaster/Cargo.toml | 2 +- 4 files changed, 27 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a35e738..67108eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,28 @@ 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.4.0](https://github.com/JayanAXHF/gitv/compare/gitv-tui-v0.3.4...gitv-tui-v0.4.0) - 2026-03-20 + +### Features + +- *(preview pane)* Add a small issue list preview when in issue conversation +- *(style)* [**breaking**] Revamp the entire UI to have less borders and distractions + +### Bug Fixes + +- fix test(ui): fix ui tests +- *(md)* fixed checklist rendering + +### Other + +- cleanup fix(changelog): streamline changelog config in release-plz.toml +- Add dependabot.yml +- bump flake.lock, fix nitpick in drv, add .envrc + +### Testing + +- test fix(benches): make benches use `std::hint::black_box` ## [0.3.4] - 2026-03-08 ### Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index 0bb4c30..beb7259 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1464,7 +1464,7 @@ dependencies = [ [[package]] name = "gitv-tui" -version = "0.3.4" +version = "0.4.0" dependencies = [ "anyhow", "async-trait", @@ -4010,7 +4010,7 @@ dependencies = [ [[package]] name = "ratatui-toaster" -version = "0.1.1" +version = "0.1.2" dependencies = [ "anyhow", "ratatui", diff --git a/Cargo.toml b/Cargo.toml index 3fe292d..71bf712 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "gitv-tui" -version = "0.3.4" +version = "0.4.0" edition = "2024" build = "build.rs" description = "A terminal-based GitHub client built with Rust and Ratatui." @@ -39,7 +39,7 @@ rat-cursor = "2.0.0" rat-widget = "3.2.1" ratatui = {version = "0.30.0", features = ["unstable-widget-ref"] } ratatui-macros = "0.7.0" -ratatui-toaster = { path = "crates/ratatui-toaster", version = "0.1.1", features = ["tokio"] } +ratatui-toaster = { path = "crates/ratatui-toaster", version = "0.1.2", features = ["tokio"] } termprofile = { version = "0.2.0", features = ["convert", "ratatui"] } textwrap = { version = "0.16.2", features = ["terminal_size"] } thiserror = "2.0.18" diff --git a/crates/ratatui-toaster/Cargo.toml b/crates/ratatui-toaster/Cargo.toml index c3a7f41..3864fa8 100644 --- a/crates/ratatui-toaster/Cargo.toml +++ b/crates/ratatui-toaster/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "ratatui-toaster" description = "An extremely lightweight toast engine for ratatui" -version = "0.1.1" +version = "0.1.2" edition = "2024" authors = ["JayanAXHF "] license = "Unlicense OR MIT"