From 7875a0f9aaf450f6944e9226755d4ac5abfa2720 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Wed, 3 Apr 2024 00:37:33 +0200 Subject: [PATCH 1/2] Zig version changed --- README.md | 3 ++- build.zig | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d7945a7..02d9401 100644 --- a/README.md +++ b/README.md @@ -96,7 +96,8 @@ that if you update one, you may need to also update the other. ### Version Changes -Version-0.12.0-dev.3397 +Version-0.12.0-dev.3518 +* *2024-03-21* zig 0.12.0-dev.3518 - change to @fieldParentPtr - see [#19470](https://github.com/ziglang/zig/pull/19470) * *2024-03-21* zig 0.12.0-dev.3397 - rename std.os to std.posix - see [#5019](https://github.com/ziglang/zig/issues/5019) * *2024-03-14* zig 0.12.0-dev.3302 - changes in `std.fmt` - floating-point formatting implementation - see [#19229](https://github.com/ziglang/zig/pull/19229) * *2024-02-05* zig 0.12.0-dev.2618 - changes in `build system` - from `Step.zig_exe` to `Step.graph.zig_exe` - see [#18778](https://github.com/ziglang/zig/issues/18778) diff --git a/build.zig b/build.zig index 1a49a53..7620db0 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.12.0-dev.3397"; + const required_zig = "0.12.0-dev.3518"; const current_zig = builtin.zig_version; const min_zig = std.SemanticVersion.parse(required_zig) catch unreachable; if (current_zig.order(min_zig) == .lt) { From 564916db81e4f748f430528c5366673504221c1b Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Wed, 3 Apr 2024 07:51:19 +0000 Subject: [PATCH 2/2] Update README.md --- README.md | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/README.md b/README.md index 02d9401..2cd5778 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,4 @@ # Ziglings -# ⚠️ Ziglings has moved from GitHub to Codeberg! - -You are looking at the current Ziglings repo if you are viewing -this at https://codeberg.org/ziglings/exercises/ - -You can also use the handy URL https://ziglings.org to get here! - -*** Welcome to Ziglings! This project contains a series of tiny broken programs (and one nasty surprise). By fixing them, you'll @@ -226,6 +218,7 @@ Zig Standard Library * [X] String formatting * [X] Testing * [X] Tokenization +* [X] File handling ## Contributing