Installation

Add zig-bump to your build.zig.zon:

zig fetch --save git+https://github.com/zig-utils/zig-bump

Then wire the module up in build.zig:

const zig_bump = b.dependency("zig_bump", .{
    .target = target,
    .optimize = optimize,
});
exe.root_module.addImport("zig_bump", zig_bump.module("zig_bump"));

Requires Zig 0.17.0-dev.56+a8226cd53 or newer.

Or through Pantry:

pantry add zig-bump