Skip to content

Commit

Permalink
start the 0.15.0 dev cycle
Browse files Browse the repository at this point in the history
  • Loading branch information
llogick committed Mar 9, 2025
1 parent 8836800 commit a954c0b
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

- uses: mlugg/setup-zig@v1
with:
version: 0.14.0
version: master

# - name: Install APT packages
# run: |
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/build_runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
zig:
- version: master
build-runner-file: 0.14.0.zig
- version: 0.13.0
build-runner-file: legacy.zig
- version: 0.12.0
build-runner-file: legacy.zig
# - version: 0.13.0
# build-runner-file: legacy.zig
# - version: 0.12.0
# build-runner-file: legacy.zig
runs-on: ${{ matrix.os }}

steps:
Expand Down
3 changes: 2 additions & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ const builtin = @import("builtin");
/// Remove `.pre` when tagging a new release and add it back on the next development cycle.
const proj_version: std.SemanticVersion = .{
.major = 0,
.minor = 14,
.minor = 15,
.patch = 0,
.pre = "dev",
};

/// Specify the minimum Zig version that is required to compile and test the project:
Expand Down
2 changes: 1 addition & 1 deletion build.zig.zon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.{
.name = .zigscient,
// Must match the `proj_version` in `build.zig`
.version = "0.14.0",
.version = "0.15.0-dev",
// Must match the `minimum_build_zig_version` in `build.zig`
.minimum_zig_version = "0.14.0",
.dependencies = .{
Expand Down

0 comments on commit a954c0b

Please sign in to comment.