summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Boesch <chrboesch@noreply.codeberg.org>2024-08-04 13:19:44 +0000
committerChris Boesch <chrboesch@noreply.codeberg.org>2024-08-04 13:19:44 +0000
commit94d6a4da5f8b79348cd66f0fd2281a7593c91497 (patch)
treeaf70971052b15d72c997c10d1a2d4739661eb491
parentd6887f21c8469f9d06d326b3b678b01d79a8de64 (diff)
parent1ba74488e4a07663f6986af8aeefa32071dac192 (diff)
Merge pull request 'Changed needed zig version.' (#138) from pr_130 into main
Reviewed-on: https://codeberg.org/ziglings/exercises/pulls/138
-rw-r--r--README.md3
-rw-r--r--build.zig2
2 files changed, 3 insertions, 2 deletions
diff --git a/README.md b/README.md
index 776bafb..4336743 100644
--- a/README.md
+++ b/README.md
@@ -88,7 +88,8 @@ that if you update one, you may need to also update the other.
### Version Changes
-Version-0.14.0-dev.42
+Version-0.14.0-dev.839
+* *2024-08-04* zig 0.14.0-dev.839 - several changes in build system, see [#20580](https://github.com/ziglang/zig/pull/20580), [#20600](https://github.com/ziglang/zig/issues/20600)
* *2024-06-17* zig 0.14.0-dev.42 - changes in `std.mem.split and tokenize` - see [#15579](https://github.com/ziglang/zig/pull/15579)
* *2024-05-29* zig 0.13.0-dev.339 - rework std.Progress - see [#20059](https://github.com/ziglang/zig/pull/20059)
* *2024-03-21* zig 0.12.0-dev.3518 - change to @fieldParentPtr - see [#19470](https://github.com/ziglang/zig/pull/19470)
diff --git a/build.zig b/build.zig
index 8c7ab7b..e3fa9ac 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.14.0-dev.42";
+ const required_zig = "0.14.0-dev.839";
const current_zig = builtin.zig_version;
const min_zig = std.SemanticVersion.parse(required_zig) catch unreachable;
if (current_zig.order(min_zig) == .lt) {