Installation
Add zig-changelog to your build.zig.zon:
zig fetch --save git+https://github.com/zig-utils/zig-changelog
Then wire the module up in build.zig:
const zig_changelog = b.dependency("zig_changelog", .{
.target = target,
.optimize = optimize,
});
exe.root_module.addImport("zig_changelog", zig_changelog.module("zig_changelog"));
Requires Zig 0.15.0 or newer.
Or through Pantry:
pantry add zig-changelog