Просмотр исходного кода

Merge pull request #180 from chrboesch/v1602

updated to version 011.0-dev.1602
Chris Boesch 2 лет назад
Родитель
Сommit
0dd1cf1b18
2 измененных файлов с 5 добавлено и 6 удалено
  1. 2 1
      README.md
  2. 3 5
      build.zig

+ 2 - 1
README.md

@@ -41,7 +41,7 @@ Verify the installation and build number of `zig` like so:
 
 ```bash
 $ zig version
-0.11.0-dev.1568+xxxxxxxxx
+0.11.0-dev.1602+xxxxxxxxx
 ```
 
 Clone this repository with Git:
@@ -82,6 +82,7 @@ about input:
 ### Version Changes
 
 Version-0.11.0-dev.1568+xxxxxxxxx
+* *2023-02-12* zig 0.11.0-dev.1602 - 
 * *2023-02-04* zig 0.11.0-dev.1568 - changes in `std.Build` (combine `std.build` and `std.build.Builder` into `std.Build`)
 * *2023-01-14* zig 0.11.0-dev.1302 - changes in `@addWithOverflow` (now returns a tuple) and `@typeInfo`; temporary disabled async functionality
 * *2022-09-09* zig 0.10.0-dev.3978 - change in `NativeTargetInfo.detect` in build

+ 3 - 5
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.11.0-dev.1568") catch unreachable;
+const needed_version = std.SemanticVersion.parse("0.11.0-dev.1602") catch unreachable;
 
 const Exercise = struct {
     /// main_file must have the format key_name.zig.
@@ -419,6 +419,7 @@ const exercises = [_]Exercise{
         .output = "I say hello!",
     },
     // disabled because of https://github.com/ratfactor/ziglings/issues/163
+    // direct link: https://github.com/ziglang/zig/issues/6025
     // .{
     //     .main_file = "084_async.zig",
     //     .output = "foo() A",
@@ -564,10 +565,7 @@ pub fn build(b: *Builder) void {
         const file_path = std.fs.path.join(b.allocator, &[_][]const u8{
             if (use_healed) "patches/healed" else "exercises", ex.main_file,
         }) catch unreachable;
-        const build_step = b.addExecutable(.{
-            .name = base_name,
-            .root_source_file = .{ .path = file_path }
-        });
+        const build_step = b.addExecutable(.{ .name = base_name, .root_source_file = .{ .path = file_path } });
 
         build_step.install();