Skip to content

Commit 23456d2

Browse files
stevenpollackclaude
andcommitted
chore(release): 0.31.0, mark as fork build
Bump 0.29.0 -> 0.31.0 (three feature milestones past upstream 0.28) and tag every build with "-fork" in build.rs, so `gitui --version` and the help popup read e.g. "0.31.0-fork <date> (<hash>)" and never look like an upstream release. Restamp the changelog heading to [0.31.0]. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01LrbVApNVj46mmVyzfqgDsx
1 parent 858c4dc commit 23456d2

4 files changed

Lines changed: 7 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## Unreleased
99

10-
## [0.29.0] - 2026-07-15
10+
## [0.31.0] - 2026-07-15
1111

1212
### Added
1313
* support x509 commit signing [[@kaden-l-nelson](https://github.com/kaden-l-nelson)] ([#2514](https://github.com/gitui-org/gitui/issues/2514))

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "gitui"
3-
version = "0.29.0"
3+
version = "0.31.0"
44
authors = ["extrawurst <mail@rusticorn.com>"]
55
description = "blazing fast terminal-ui for git"
66
edition = "2021"

build.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,13 @@ fn main() {
3333
};
3434
let build_date = now.date_naive();
3535

36+
// this is a fork build — mark the version as such so `gitui
37+
// --version` and the help popup never read as an upstream release.
3638
let build_name = if std::env::var("GITUI_RELEASE").is_ok() {
37-
env!("CARGO_PKG_VERSION").to_string()
39+
format!("{}-fork", env!("CARGO_PKG_VERSION"))
3840
} else {
3941
format!(
40-
"{}-nightly {} ({})",
42+
"{}-fork {} ({})",
4143
env!("CARGO_PKG_VERSION"),
4244
build_date,
4345
get_git_hash()

0 commit comments

Comments
 (0)