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
19 changes: 18 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this

## [Unreleased]

## [2.4.0] - 2026-02-24

### Added

- Interactive fzf worktree picker for `gtr cd` with preview, keybindings, and multi-action support ([#136](https://github.com/coderabbitai/git-worktree-runner/pull/136))
- Helpful error message when running `git gtr cd` explaining shell integration requirement ([#137](https://github.com/coderabbitai/git-worktree-runner/pull/137))

### Changed

- Limit `find` depth for simple directory copy patterns for better performance ([#130](https://github.com/coderabbitai/git-worktree-runner/pull/130))

### Fixed

- Root-level files now matched correctly for `**` glob patterns on Bash 3.2 ([#133](https://github.com/coderabbitai/git-worktree-runner/pull/133))
- Antigravity adapter support ([#131](https://github.com/coderabbitai/git-worktree-runner/pull/131))

## [2.3.1] - 2026-02-17

### Added
Expand Down Expand Up @@ -140,7 +156,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com), and this

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

[Unreleased]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.3.1...HEAD
[Unreleased]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.4.0...HEAD
[2.4.0]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.3.1...v2.4.0
[2.3.1]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.3.0...v2.3.1
[2.3.0]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.2.0...v2.3.0
[2.2.0]: https://github.com/coderabbitai/git-worktree-runner/compare/v2.1.0...v2.2.0
Expand Down
2 changes: 1 addition & 1 deletion bin/git-gtr
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ if [ -n "${GTR_DEBUG:-}" ]; then
fi

# Version
GTR_VERSION="2.3.1"
GTR_VERSION="2.4.0"

# Find the script directory (resolve symlinks; allow env override)
resolve_script_dir() {
Expand Down