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/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ body:
attributes:
label: Zigantic Version
description: What version of zigantic are you using?
placeholder: "e.g., 0.0.1"
placeholder: "e.g., 0.0.3"
validations:
required: true

Expand All @@ -30,7 +30,7 @@ body:
attributes:
label: Zig Version
description: What version of Zig are you using? (run `zig version`)
placeholder: "e.g., 0.15.0"
placeholder: "e.g., 0.16.0"
validations:
required: true

Expand Down
4 changes: 2 additions & 2 deletions .github/ISSUE_TEMPLATE/help_wanted.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ body:
attributes:
label: Zigantic Version
description: What version of zigantic are you using?
placeholder: "e.g., 0.0.1"
placeholder: "e.g., 0.0.3"
validations:
required: true

Expand All @@ -50,7 +50,7 @@ body:
attributes:
label: Zig Version
description: What version of Zig are you using? (run `zig version`)
placeholder: "e.g., 0.15.0"
placeholder: "e.g., 0.16.0"
validations:
required: true

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Setup Zig
uses: mlugg/setup-zig@v2
with:
version: 0.15.2
version: 0.16.0

- name: Run Zig tests
run: zig build test --summary all
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Setup Zig
uses: mlugg/setup-zig@v2
with:
version: 0.15.2
version: 0.16.0

- name: Install QEMU and Multilib (Linux)
if: runner.os == 'Linux' && (matrix.target == 'aarch64-linux' || matrix.target == 'x86-linux')
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
- name: Setup Zig
uses: mlugg/setup-zig@v2
with:
version: 0.15.2
version: 0.16.0

- name: Build for ${{ matrix.target }} (build-only)
run: zig build -Dtarget=${{ matrix.target }} -Doptimize=Debug
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.15.2
version: 0.16.0
- name: Run Tests
run: zig build test

Expand All @@ -31,7 +31,7 @@ jobs:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.15.2
version: 0.16.0
- name: Run Benchmarks
id: run_bench
run: |
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
- uses: actions/checkout@v4
- uses: mlugg/setup-zig@v2
with:
version: 0.15.2
version: 0.16.0

- name: Build Library
run: zig build -Doptimize=ReleaseSafe -Dtarget=${{ matrix.target }}
Expand Down Expand Up @@ -102,7 +102,7 @@ jobs:

- uses: mlugg/setup-zig@v2
with:
version: 0.15.2
version: 0.16.0

- name: Calculate Hash
id: calc_hash
Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,7 @@ Desktop.ini

# Logs
*.log
benchmark-results.md
benchmark-results.md

zig-pkg
.global-cache/
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Thank you for your interest in contributing to zigantic!
cd zigantic
```

2. Ensure you have Zig 0.15.0 or later installed.
2. Ensure you have Zig 0.16.0 or later installed.

3. Run tests:
```bash
Expand Down
Loading
Loading