From 7f718c5f1d10b363e0a5a5395be37e0dc3326859 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20R=C3=BC=C3=9Fler?= Date: Wed, 6 May 2026 21:29:03 +0200 Subject: [PATCH 1/3] Run gh release create with --generate-notes --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 003a533..834b70a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,7 +61,7 @@ jobs: esac - name: Create GitHub release - run: gh release create "$VERSION" --title="$VERSION" --draft + run: gh release create "$VERSION" --title="$VERSION" --generate-notes --draft env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} From 9842c847ec645acf2cb55e835acab7bf542b462f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20R=C3=BC=C3=9Fler?= Date: Wed, 6 May 2026 21:29:49 +0200 Subject: [PATCH 2/3] Run release workflow on tag push --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 834b70a..ea04e5c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,6 +6,9 @@ name: Release on: + push: + tags: + - 'v*' workflow_dispatch: inputs: force_version: From 914ca871f1a2fb0f23d650c98b41fdd0b2d3a58d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20R=C3=BC=C3=9Fler?= Date: Wed, 6 May 2026 21:30:05 +0200 Subject: [PATCH 3/3] Update version from 0.1.5 to 0.2.0 --- Cargo.lock | 2 +- Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 9125f88..2462dd2 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -389,7 +389,7 @@ dependencies = [ [[package]] name = "git-tree" -version = "0.1.5" +version = "0.2.0" dependencies = [ "ansi_term", "anyhow", diff --git a/Cargo.toml b/Cargo.toml index f6a655a..8cb49ee 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "git-tree" -version = "0.1.5" +version = "0.2.0" authors = ["Christoph Rüßler "] edition = "2021" description = "tree + git status: displays git status info in a tree"