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/nanvix-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
if: github.event_name != 'schedule' && github.event_name != 'workflow_dispatch'
uses: nanvix/workflows/.github/workflows/nanvix-ci.yml@v2.0.1
with:
zutil-version: "v0.8.4"
zutil-version: "v0.8.5"
docker-image: "ghcr.io/nanvix/toolchain-quickjs@sha256:e6fc5d3d4ed338c1416c08dbe9d8ac1353f696046716774bcc3ac6d41d2375ad" # yamllint disable-line rule:line-length

Check warning on line 32 in .github/workflows/nanvix-ci.yml

View workflow job for this annotation

GitHub Actions / ci / Format & Lint

32:128 [comments] too few spaces before comment
platforms: '["microvm"]'
memory-sizes: '["128mb","256mb"]'
windows-matrix-exclude: '[]'
Expand All @@ -44,8 +44,8 @@
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch'
uses: nanvix/workflows/.github/workflows/nanvix-ci.yml@v2.0.1
with:
zutil-version: "v0.8.4"
zutil-version: "v0.8.5"
docker-image: "ghcr.io/nanvix/toolchain-quickjs@sha256:e6fc5d3d4ed338c1416c08dbe9d8ac1353f696046716774bcc3ac6d41d2375ad" # yamllint disable-line rule:line-length

Check warning on line 48 in .github/workflows/nanvix-ci.yml

View workflow job for this annotation

GitHub Actions / ci / Format & Lint

48:128 [comments] too few spaces before comment
platforms: '["microvm"]'
memory-sizes: '["128mb","256mb"]'
windows-matrix-exclude: '[]'
Expand Down
2 changes: 1 addition & 1 deletion .nanvix/nanvix.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "quickjs"
version = "2025-09-13"
nanvix-version = "0.13.15"
nanvix-version = "0.13.16"

[builds]
[builds.matrix]
Expand Down
2 changes: 1 addition & 1 deletion z.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ $zutilVersion = if ($env:NANVIX_ZUTIL_VERSION) {
$env:NANVIX_ZUTIL_VERSION
}
else {
"0.8.4"
"0.8.5"
}
$zutilVersion = $zutilVersion -replace "^v", ""

Expand Down
2 changes: 1 addition & 1 deletion z.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

set -euo pipefail

PINNED_VERSION="0.8.4"
PINNED_VERSION="0.8.5"
RAW_ZUTIL_VERSION="${NANVIX_ZUTIL_VERSION:-$PINNED_VERSION}"
ZUTIL_VERSION="${RAW_ZUTIL_VERSION#v}"
REPO_ROOT="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd -P)"
Expand Down
Loading