Skip to content

Commit 8580233

Browse files
committed
Release v2.8.0
1 parent 123ca57 commit 8580233

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,17 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this
66

77
## [Unreleased]
88

9+
## [2.8.0] - 2026-06-12
10+
11+
### Added
12+
13+
- `git gtr clean --closed` to remove worktrees whose PRs/MRs were closed without merging; combine with `--merged` to match either state, and `--to <ref>` now filters both modes by target base ref ([#183](https://github.com/coderabbitai/git-worktree-runner/pull/183))
14+
15+
### Fixed
16+
17+
- `git gtr clean` now detects registry entries that are locked but whose directories no longer exist and offers to unlock and prune them ([#182](https://github.com/coderabbitai/git-worktree-runner/pull/182))
18+
- GitLab MR branch-tip matching now validates head SHAs structurally instead of substring matching, preventing false matches on unrelated JSON fields ([#183](https://github.com/coderabbitai/git-worktree-runner/pull/183))
19+
920
## [2.7.3] - 2026-05-05
1021

1122
### Fixed
@@ -223,7 +234,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this
223234

224235
- Improved base directory resolution logic to distinguish `.` (repo root), `./path` (repo-internal) from other relative values (sibling directories)
225236

226-
[Unreleased]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.7.3...HEAD
237+
[Unreleased]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.8.0...HEAD
238+
[2.8.0]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.7.3...v2.8.0
227239
[2.7.3]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.7.2...v2.7.3
228240
[2.7.2]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.7.1...v2.7.2
229241
[2.7.1]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.7.0...v2.7.1

bin/git-gtr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ if [ -n "${GTR_DEBUG:-}" ]; then
1111
fi
1212

1313
# Version
14-
GTR_VERSION="2.7.3"
14+
GTR_VERSION="2.8.0"
1515

1616
# Find the script directory (resolve symlinks; allow env override)
1717
resolve_script_dir() {

0 commit comments

Comments
 (0)