From f6e1cb58896c5e308096f939997215ec2584e2bc Mon Sep 17 00:00:00 2001 From: draw me an elephant <68925779+drawmeanelephant@users.noreply.github.com> Date: Thu, 27 Aug 2026 13:48:37 -0400 Subject: [PATCH] build: bump the package version to 1.1.0 for the v1.1 release The v1.1 wave is shipped: GFM task lists and the raw-HTML policy knob (#97), the deterministic fuzz wall (#98), the stable C ABI (#99), the native-tested Windows binary (#100), --json serialization (#103) and --diagnostics (#104), the oliver meta (#111) and oliver wrap (#112) subcommands, native .md/.textile/.cook -> .html link rewriting (#113), and the plan+manifest output (#114), plus the post-wave fixes (#116, #119, #121, #123). The zon is the single source of truth (extracted by build.zig), so oliver.zig's public version constant and the binaries workflow smoke-test assertions move in lockstep with it. --- .github/workflows/binaries.yml | 4 ++-- build.zig.zon | 2 +- src/oliver.zig | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/binaries.yml b/.github/workflows/binaries.yml index 4462620..97d4f9c 100644 --- a/.github/workflows/binaries.yml +++ b/.github/workflows/binaries.yml @@ -77,7 +77,7 @@ jobs: test "$(printf '# Hello *world*\n' | dist/oliver-linux-x86_64 render --from markdown)" = \ '

Hello world

' test "$(dist/oliver-linux-x86_64 --version)" = \ - "oliver 1.0.0 (commit $GITHUB_SHA)" + "oliver 1.1.0 (commit $GITHUB_SHA)" - name: Write the checksum manifest run: | @@ -119,7 +119,7 @@ jobs: test "$(printf '# Hello *world*\n' | dist/oliver-windows-x86_64.exe render --from markdown)" = \ '

Hello world

' test "$(dist/oliver-windows-x86_64.exe --version)" = \ - "oliver 1.0.0 (commit $GITHUB_SHA)" + "oliver 1.1.0 (commit $GITHUB_SHA)" publish: name: Publish to the builds release diff --git a/build.zig.zon b/build.zig.zon index 8b90550..faab8f4 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = .oliver, - .version = "1.0.0", + .version = "1.1.0", // Generated by the Zig toolchain; never changes once set. .fingerprint = 0xa471a5f99019eb2c, .minimum_zig_version = "0.16.0", diff --git a/src/oliver.zig b/src/oliver.zig index 0666c61..e606e15 100644 --- a/src/oliver.zig +++ b/src/oliver.zig @@ -72,7 +72,7 @@ comptime { _ = c_abi; } -pub const version = "1.0.0"; +pub const version = "1.1.0"; /// The input dialect. Both dialects converge into the same document model. pub const Dialect = enum {