Skip to content

Commit 64cf79e

Browse files
committed
chore[release]: bump version to 0.9.1
1 parent 541e91e commit 64cf79e

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
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [0.9.1] - 2026-03-03
4+
5+
### Added
6+
- `--allow-empty` flag on `check` command — allows zero SHA arguments, useful with `--exclusive` to assert no hunks exist (e.g., `check --exclusive --allow-empty --staged` asserts nothing is staged)
7+
38
## [0.9.0] - 2026-03-03
49

510
### Added

build.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ pub fn build(b: *std.Build) void {
44
const target = b.standardTargetOptions(.{});
55
const optimize = b.standardOptimizeOption(.{});
66

7-
const version_option = b.option([]const u8, "version", "Version string") orelse "0.9.0";
7+
const version_option = b.option([]const u8, "version", "Version string") orelse "0.9.1";
88
const build_options = b.addOptions();
99
build_options.addOption([]const u8, "version", version_option);
1010

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = .git_hunk,
3-
.version = "0.9.0",
3+
.version = "0.9.1",
44
.fingerprint = 0x664e39e7d5052c1,
55
.minimum_zig_version = "0.15.2",
66
.dependencies = .{},

0 commit comments

Comments
 (0)