summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md3
-rw-r--r--build.zig2
-rw-r--r--patches/patches/104_threading.patch4
3 files changed, 5 insertions, 4 deletions
diff --git a/README.md b/README.md
index 5c930d2..bcf60db 100644
--- a/README.md
+++ b/README.md
@@ -72,7 +72,7 @@ the appropriate tag.
The Zig language is under very active development. In order to be
current, Ziglings tracks **development** builds of the Zig
compiler rather than versioned **release** builds. The last
-stable release was `0.15.1`, but Ziglings needs a dev build with
+stable release was `0.15.2`, but Ziglings needs a dev build with
pre-release version "0.16.0" and a build number at least as high
as that shown in the example version check above.
@@ -86,6 +86,7 @@ that if you update one, you may need to also update the other.
### Version Changes
+* *2025-11-01* zig 0.16.0-dev.1204 - more changes due to new I/O API, see [#25592](https://github.com/ziglang/zig/pull/25592)
* *2025-09-24* zig 0.16.0-dev.377 - Enable passing file content as args, see [#25228](https://github.com/ziglang/zig/pull/25228)
* *2025-09-03* zig 0.16.0-dev.164 - changes in reader, see [#25077](https://github.com/ziglang/zig/pull/25077)
* *2025-08-15* zig 0.15.0-dev.1519 - changes in array list, see [#24801](https://github.com/ziglang/zig/pull/24801)
diff --git a/build.zig b/build.zig
index 2a16899..bc0b23e 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.16.0-dev.377";
+ const required_zig = "0.16.0-dev.1204";
const current_zig = builtin.zig_version;
const min_zig = std.SemanticVersion.parse(required_zig) catch unreachable;
if (current_zig.order(min_zig) == .lt) {
diff --git a/patches/patches/104_threading.patch b/patches/patches/104_threading.patch
index 51d7035..1009a3a 100644
--- a/patches/patches/104_threading.patch
+++ b/patches/patches/104_threading.patch
@@ -1,5 +1,5 @@
---- exercises/104_threading.zig 2025-11-15 19:13:35.359496111 +0100
-+++ answers/104_threading.zig 2025-11-15 19:11:20.468752429 +0100
+--- exercises/104_threading.zig 2025-11-01 15:54:27.074988112 +0100
++++ answers/104_threading.zig 2025-11-01 15:56:12.852195135 +0100
@@ -97,12 +97,12 @@
defer handle.join();