Skip to content

Release v0.9.1

Pre-release
Pre-release
Compare
Choose a tag to compare
@github-actions github-actions released this 20 Oct 21:36
ae5c927

ZAP Release v0.9.1

Updates

Bugfix for Middleware.EnpointHandler checkPath logic

I introduced a bug by wrongly trying to de-morgan the logic.

Thx @andr3h3nriqu3s11 for submitting issue #136 #136

I reverted the commit.

Using it

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

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

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"));