Skip to content
Closed
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
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,27 @@ 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.5](https://github.com/JayanAXHF/gitv/compare/gitv-tui-v0.3.4...gitv-tui-v0.3.5) - 2026-03-20

### <!-- 0 -->Features

- *(preview pane)* Add a small issue list preview when in issue conversation
- *(style)* Revamp the entire UI to have less borders and distractions

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

- *(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
Comment on lines +29 to 30
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Missing blank line between changelog sections

There is no blank line separating the last entry of the 0.3.5 section from the ## [0.3.4] heading. Some Markdown parsers will fail to recognise the heading and render it as plain text instead. This is likely a quirk in the release-plz template, but worth a one-line fix.

Suggested change
- test fix(benches): make benches use `std::hint::black_box`
## [0.3.4] - 2026-03-08
- 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.3.5"
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
3 changes: 2 additions & 1 deletion benches/ui_hotspots.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
use criterion::{BenchmarkId, Criterion, Throughput, black_box, criterion_group, criterion_main};
use criterion::{BenchmarkId, Criterion, Throughput, criterion_group, criterion_main};
use gitv_tui::bench_support::{
build_issue_body_preview_for_bench, issue_body_fixture, markdown_fixture,
render_markdown_for_bench,
};
use std::hint::black_box;

fn bench_issue_list_preview(c: &mut Criterion) {
let mut group = c.benchmark_group("issue_list_preview");
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
Loading
Loading