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 {