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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ same stability guarantee.

## [Unreleased]

## [0.11.1] — 2026-08-07

### Changed

- Bumped the lazy `pozeiden` dependency v0.2.0 → v0.4.0, picking up its two
Expand Down
6 changes: 3 additions & 3 deletions build.zig.zon
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
.name = .zigmark,
// This is a [Semantic Version](https://semver.org/).
// In a future version of Zig it will be used for package deduplication.
.version = "0.11.0",
.version = "0.11.1",
// Together with name, this represents a globally unique package
// identifier. This field is generated by the Zig toolchain when the
// package is first created, and then *never changes*. This allows
Expand Down Expand Up @@ -62,8 +62,8 @@
// The CLI and WASM builds use it for mermaid rendering; falls back to
// noop_mermaid.zig when pozeiden is unavailable.
.pozeiden = .{
.url = "https://github.com/sc2in/pozeiden/archive/refs/tags/v0.4.0.tar.gz",
.hash = "pozeiden-0.4.0-NAqiXYMXCwCzyp6k5efqAnjQ9j_0CWeuyJcw62yfnWxK",
.url = "https://github.com/sc2in/pozeiden/archive/refs/tags/v0.4.1.tar.gz",
.hash = "pozeiden-0.4.1-NAqiXUkfCwBbeMXQus5ba8zxE3oEyZtnD_OtL_35qKi8",
.lazy = true,
},
.yaml = .{
Expand Down
6 changes: 3 additions & 3 deletions build.zig.zon2json-lock
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@
"url": "git+https://github.com/github/cmark-gfm.git#587a12bb54d95ac37241377e6ddc93ea0e45439b",
"hash": "sha256-egCWzw09e5daT8cnlSORC3gep9soiqonVC4GQ/s3voM="
},
"pozeiden-0.4.0-NAqiXYMXCwCzyp6k5efqAnjQ9j_0CWeuyJcw62yfnWxK": {
"pozeiden-0.4.1-NAqiXUkfCwBbeMXQus5ba8zxE3oEyZtnD_OtL_35qKi8": {
"name": "pozeiden",
"url": "https://github.com/sc2in/pozeiden/archive/refs/tags/v0.4.0.tar.gz",
"hash": "sha256-uvGGJICGYLTqqDnOQcakvn3ft2MEcj5OmLP0puS4g/g="
"url": "https://github.com/sc2in/pozeiden/archive/refs/tags/v0.4.1.tar.gz",
"hash": "sha256-JRF9suGxbgmYBSkkfgJjiQB57fi5itR6B2RfNNbYMtw="
},
"mvzr-0.3.9-ZSOky8FzAQBQ9-GkQnaLjOZZHxrioD8NwY-QyZT6oAyR": {
"name": "mvzr",
Expand Down
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@
text = ''
PORT="''${1:-8080}"
echo "▸ Starting fuzzer — web UI at http://127.0.0.1:$PORT"
zig build --listen fuzz --fuzz --webui="127.0.0.1:$PORT"
zig build fuzz --fuzz --webui="127.0.0.1:$PORT"
'';
};
in {
Expand Down
Loading