diff --git a/.changes/0.10.2.md b/.changes/0.10.2.md new file mode 100644 index 0000000..2e07186 --- /dev/null +++ b/.changes/0.10.2.md @@ -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. diff --git a/.changes/unreleased/Added-20260718-224631.yaml b/.changes/unreleased/Added-20260718-224631.yaml deleted file mode 100644 index 874b023..0000000 --- a/.changes/unreleased/Added-20260718-224631.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Added -body: Configure the logAllRef on worktree configurations. This is disable by default of bare configurations. -time: 2026-07-18T22:46:31.51832434+01:00 diff --git a/.changes/unreleased/Added-20260718-225021.yaml b/.changes/unreleased/Added-20260718-225021.yaml deleted file mode 100644 index ba0a7c2..0000000 --- a/.changes/unreleased/Added-20260718-225021.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Added -body: Configure autoSetupMerge on branches. This is a heavy handed configuration, but hoping to solve future problems. -time: 2026-07-18T22:50:21.658313086+01:00 diff --git a/.changes/unreleased/Fixed-20260718-225111.yaml b/.changes/unreleased/Fixed-20260718-225111.yaml deleted file mode 100644 index 334d35f..0000000 --- a/.changes/unreleased/Fixed-20260718-225111.yaml +++ /dev/null @@ -1,3 +0,0 @@ -kind: Fixed -body: Fix the local tracking of remote branches on initial cloning into a worktree. -time: 2026-07-18T22:51:11.163885686+01:00 diff --git a/CHANGELOG.md b/CHANGELOG.md index cabce66..fd0c5ad 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/build.zig.zon b/build.zig.zon index 8cd5641..2f1d108 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -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