summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDave Gauer <dave@ratfactor.com>2022-07-31 11:04:16 -0400
committerDave Gauer <dave@ratfactor.com>2022-07-31 11:04:16 -0400
commit00796028ba740f1a4b554e3336ba75cd2dc77a31 (patch)
treeabecd0aeeb5e2ddd5b0421dcbba7e389ba0499ae
parent635be056a00669ed8fd6da200e9c965708456425 (diff)
Updated build version requirement to 0.10.0-dev.3385
-rw-r--r--README.md3
-rw-r--r--build.zig2
-rw-r--r--exercises/050_no_value.zig1
3 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index 627c2e6..67cfd9c 100644
--- a/README.md
+++ b/README.md
@@ -41,7 +41,7 @@ Verify the installation and build number of `zig` like so:
```bash
$ zig version
-0.10.0-dev.1427+xxxxxxxxx
+0.10.0-dev.3385+xxxxxxxxx
```
Clone this repository with Git:
@@ -81,6 +81,7 @@ about input:
### Version Changes
+* *2022-07-31* zig 0.10.0-dev.3385 - std lib string fmt() option changes
* *2022-03-19* zig 0.10.0-dev.1427 - method for getting sentinel of type changed
* *2021-12-20* zig 0.9.0-dev.2025 - `c_void` is now `anyopaque`
* *2021-06-14* zig 0.9.0-dev.137 - std.build.Id `.Custom` is now `.custom`
diff --git a/build.zig b/build.zig
index 3c06eab..43af404 100644
--- a/build.zig
+++ b/build.zig
@@ -8,7 +8,7 @@ const print = std.debug.print;
// When changing this version, be sure to also update README.md in two places:
// 1) Getting Started
// 2) Version Changes
-const needed_version = std.SemanticVersion.parse("0.10.0-dev.1427") catch unreachable;
+const needed_version = std.SemanticVersion.parse("0.10.0-dev.3385") catch unreachable;
const Exercise = struct {
/// main_file must have the format key_name.zig.
diff --git a/exercises/050_no_value.zig b/exercises/050_no_value.zig
index f8e89ca..8c73ed3 100644
--- a/exercises/050_no_value.zig
+++ b/exercises/050_no_value.zig
@@ -71,6 +71,7 @@ pub fn main() void {
var first_line2: Err!*const [21]u8 = ???;
first_line2 = "which can eternal lie";
+ // Note we need the "{!s}" format for the error union string.
std.debug.print("{s} {!s} / ", .{ first_line1, first_line2 });
printSecondLine();