Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
test "$(printf '# Hello *world*\n' | dist/oliver-linux-x86_64 render --from markdown)" = \
'<h1>Hello <em>world</em></h1>'
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: |
Expand Down Expand Up @@ -119,7 +119,7 @@ jobs:
test "$(printf '# Hello *world*\n' | dist/oliver-windows-x86_64.exe render --from markdown)" = \
'<h1>Hello <em>world</em></h1>'
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
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/oliver.zig
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Loading