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
8 changes: 8 additions & 0 deletions .changes/0.10.2.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
## git-grab 0.10.2 (2026-07-18)

### Added
- Configure the logAllRef on worktree configurations. This is disabled by default of bare configurations.
- Configure autoSetupMerge on branches. This is a heavy-handed configuration, but hoping to solve future problems.

### Fixed
- Fix the local tracking of remote branches on initial cloning into a worktree.
3 changes: 0 additions & 3 deletions .changes/unreleased/Added-20260718-224631.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Added-20260718-225021.yaml

This file was deleted.

3 changes: 0 additions & 3 deletions .changes/unreleased/Fixed-20260718-225111.yaml

This file was deleted.

16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,22 @@ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html),
and is generated by [Changie](https://github.com/miniscruff/changie).


## git-grab 0.10.2 (2026-07-18)

### Added
- Configure the logAllRef on worktree configurations. This is disabled by default of bare configurations.
- Configure autoSetupMerge on branches. This is a heavy-handed configuration, but hoping to solve future problems.

### Fixed
- Fix the local tracking of remote branches on initial cloning into a worktree.

## git-grab 0.10.1 (2026-06-05)
### Changed
- Changelog manager has been changed to use changie.

### Fixed
- Working path was deallocator before use. This caused the origins not to be configured correctly. This bug was introduced during the zig 0.16.0 upgrade.

## git-grab 0.10.0 (2026-05-30)

### Features
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
.name = .grab,
// This is a [Semantic Version](https://semver.org/).
// In a future version of Zig it will be used for package deduplication.
.version = "0.10.1",
.version = "0.10.2",
// Together with name, this represents a globally unique package
// identifier. This field is generated by the Zig toolchain when the
// package is first created, and then *never changes*. This allows
Expand Down
Loading