Skip to content

Commit 75c951c

Browse files
committed
chore[release]: bump version to 0.6.2
1 parent 67efa5a commit 75c951c

3 files changed

Lines changed: 7 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

33
All notable changes to git-wt will be documented in this file.
44

5+
## [0.6.2] - 2026-03-11
6+
7+
### Fixed
8+
- **Nested worktree current detection** — when a worktree is nested inside another worktree (e.g., `.conductor/sofia` inside the main repo), `list` previously marked both as `(current)`; now only the most specific (deepest) path is marked current
9+
510
## [0.6.1] - 2026-02-27
611

712
### Fixed

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ pub fn build(b: *std.Build) void {
1717
exe.linkLibC();
1818

1919
// Add version as build option
20-
const version_option = b.option([]const u8, "version", "Version string") orelse "0.6.1";
20+
const version_option = b.option([]const u8, "version", "Version string") orelse "0.6.2";
2121
const build_options = b.addOptions();
2222
build_options.addOption([]const u8, "version", version_option);
2323
exe.root_module.addOptions("build_options", build_options);

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
.{
22
.fingerprint = 0x84ba8f2f7df68da3,
33
.name = .git_wt,
4-
.version = "0.6.1",
4+
.version = "0.6.2",
55
.minimum_zig_version = "0.15.1",
66

77
.dependencies = .{},

0 commit comments

Comments
 (0)