Skip to content

Release v0.10.3

Compare
Choose a tag to compare
@github-actions github-actions released this 23 Jul 00:10
e768c85

ZAP Release v0.10.3

Updates

Sorry I (again) forgot to bump the version in build.zig.zon

To avoid confusion, I created this release. It's identical to v0.10.2,
but with the zon version fixed, so it will show up with the correct
version in your zon files after a zig fetch.

Using it

In your zig project folder (where build.zig is located), run:

zig fetch --save "git+https://github.com/zigzap/zap#v0.10.3"

Then, in your build.zig's build function, add the following before
b.installArtifact(exe):

    const zap = b.dependency("zap", .{
        .target = target,
        .optimize = optimize,
        .openssl = false, // set to true to enable TLS support
    });
    exe.root_module.addImport("zap", zap.module("zap"));