Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

### <!-- 0 -->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

### <!-- 1 -->Bug Fixes

- fix test(ui): fix ui tests
- *(md)* fixed checklist rendering

### <!-- 10 -->Other

- cleanup fix(changelog): streamline changelog config in release-plz.toml
- Add dependabot.yml
- bump flake.lock, fix nitpick in drv, add .envrc

### <!-- 6 -->Testing

- test fix(benches): make benches use `std::hint::black_box`
## [0.3.4] - 2026-03-08

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -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."
Expand Down Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion crates/ratatui-toaster/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <sunil.chdry@gmail.com>"]
license = "Unlicense OR MIT"
Expand Down