-
Notifications
You must be signed in to change notification settings - Fork 3
chore(gitv-tui): release v0.3.3 #82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -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 | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Missing diff comparison link on version heading Every other version entry in this changelog includes a hyperlink to the GitHub comparison diff (e.g.
Suggested change
|
||||||
|
|
||||||
| ### Features | ||||||
|
|
||||||
| - *(branding)* Add a logo | ||||||
| - *(nix)* Add devshell, package derivation, flake | ||||||
|
|
||||||
| ### Bug Fixes | ||||||
|
|
||||||
| - Fix non-flake install instructions | ||||||
|
|
||||||
| ### Documentation | ||||||
|
|
||||||
| - Update usage in readme | ||||||
| - Add install instructions for homebrew | ||||||
|
|
||||||
| ### Performance | ||||||
|
|
||||||
| - Refactor the code to use interning and deduplication to reduce CPU usage by over 300% | ||||||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Misleading performance claim — CPU usage cannot be "reduced by over 300%" A percentage reduction is bounded at 100% (eliminating the cost entirely). "Reduce CPU usage by over 300%" is not a valid metric — it likely means the CPU usage was reduced to roughly 1/4 of its original value (a ~75% reduction, or a ~4× speedup). Common correct phrasings would be:
Suggested change
|
||||||
|
|
||||||
| ### Miscellaneous Tasks | ||||||
|
|
||||||
| - *(release-plz)* Add release-plz.toml | ||||||
| - *(changelog)* Add cliff.toml | ||||||
|
|
||||||
| ## [0.3.2](https://github.com/JayanAXHF/gitv/compare/gitv-tui-v0.3.1...gitv-tui-v0.3.2) - 2026-02-26 | ||||||
|
|
||||||
|
|
||||||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing blank line between
[Unreleased]and[0.3.3]sectionsThe
## [Unreleased]heading and## [0.3.3]heading are placed on consecutive lines with no blank line separator. This deviates from the Keep a Changelog format (which the file header explicitly references) and can cause some Markdown renderers to fail to distinguish the two headings as separate sections.