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
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.4](https://github.com/JayanAXHF/gitv/compare/gitv-tui-v0.4.3...gitv-tui-v0.4.4) - 2026-06-28

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

- *(ops)* fixed bech workflow not finding keyring and dbus
- fix external editor lagging a lot
- nix packaging

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

- hyperrat fix: upgrade to ratatui 0.30
- add nix.yml
- *(benchmarks)* add bencher regression tracking
- Add nix to dependabot.yml
- *(benchmarks)* add bencher regression tracking

## [0.4.3](https://github.com/JayanAXHF/gitv/compare/gitv-tui-v0.4.2...gitv-tui-v0.4.3) - 2026-04-19

### <!-- 10 -->Other
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "gitv-tui"
version = "0.4.3"
version = "0.4.4"
edition = "2024"
build = "build.rs"
description = "A terminal-based GitHub client built with Rust and Ratatui."
Expand Down Expand Up @@ -29,7 +29,7 @@ crossterm = { version = "0.29.0", features = ["event-stream"] }
directories = "6.0.0"
edit = "0.1.5"
futures = "0.3.32"
hyperrat = { path = "crates/hyperrat", version = "0.1.1" }
hyperrat = { path = "crates/hyperrat", version = "0.1.2" }
inquire = "0.9.4"
keyring = { version = "3.6.3", features = ["apple-native", "windows-native"] }
octocrab = "0.49.7"
Expand All @@ -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.3", features = ["tokio"] }
ratatui-toaster = { path = "crates/ratatui-toaster", version = "0.1.4", features = ["tokio"] }
termprofile = { version = "0.2.3", features = ["convert", "ratatui"] }
textwrap = { version = "0.16.2", features = ["terminal_size"] }
thiserror = "2.0.18"
Expand Down
6 changes: 6 additions & 0 deletions crates/hyperrat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.1.2](https://github.com/JayanAXHF/gitv/compare/hyperrat-v0.1.1...hyperrat-v0.1.2) - 2026-06-28

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

- hyperrat fix: upgrade to ratatui 0.30

## [0.1.1](https://github.com/JayanAXHF/gitv/compare/hyperrat-v0.1.0...hyperrat-v0.1.1) - 2026-02-19

### Other
Expand Down
2 changes: 1 addition & 1 deletion crates/hyperrat/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hyperrat"
description = "An OSC 8 link widget for ratatui that doesn't break your UI"
version = "0.1.1"
version = "0.1.2"
edition = "2024"
authors = ["JayanAXHF <sunil.chdry@gmail.com>"]
license = "Unlicense OR MIT"
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.3"
version = "0.1.4"
edition = "2024"
authors = ["JayanAXHF <sunil.chdry@gmail.com>"]
license = "Unlicense OR MIT"
Expand Down
Loading