summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2025-08-08 20:34:59 +0200
committerChris Boesch <chrboesch@noreply.codeberg.org>2025-08-08 20:34:59 +0200
commitfd310273a7aeecbf877057a62c3f32bc1405c926 (patch)
treef933c0a8ceccbab12f1ce6248fdab8f511a08b33
parent711cb70c5ac23da50ea830366c418cc40d537e0f (diff)
Current version set
-rw-r--r--README.md1
-rw-r--r--build.zig2
2 files changed, 2 insertions, 1 deletions
diff --git a/README.md b/README.md
index b497666..c3fc8a0 100644
--- a/README.md
+++ b/README.md
@@ -88,6 +88,7 @@ that if you update one, you may need to also update the other.
### Version Changes
Version-0.15.0-dev.1092
+* *2025-08-08* zig 0.15.0-dev.1380 - changes in build system, see [#24588](https://github.com/ziglang/zig/pull/24588)
* *2025-07-22* zig 0.15.0-dev.1092 - various changes due to new I/O API, see [#24488](https://github.com/ziglang/zig/pull/24488)
* *2024-09-16* zig 0.14.0-dev.1573 - introduction of labeled switch, see [#21257](https://github.com/ziglang/zig/pull/21257)
* *2024-09-02* zig 0.14.0-dev.1409 - several changes in std.builtin, see [#21225](https://github.com/ziglang/zig/pull/21225)
diff --git a/build.zig b/build.zig
index 8b22a3c..eaf4646 100644
--- a/build.zig
+++ b/build.zig
@@ -15,7 +15,7 @@ const print = std.debug.print;
// 1) Getting Started
// 2) Version Changes
comptime {
- const required_zig = "0.15.0-dev.1092";
+ const required_zig = "0.15.0-dev.1380";
const current_zig = builtin.zig_version;
const min_zig = std.SemanticVersion.parse(required_zig) catch unreachable;
if (current_zig.order(min_zig) == .lt) {