aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorChris Boesch <[email protected]>2023-03-19 18:28:47 +0100
committerGitHub <[email protected]>2023-03-19 18:28:47 +0100
commit2ba268a0b0e64b19625776f86a9b8b4810641f84 (patch)
treef6d1116b08fc400567c5d4b255abae014c7e29a3 /README.md
parentad8b0383a42a89265cc431e0dfa3fb7c0c72d9ee (diff)
parent3b85c24694721c957c336cf8eae128d2191f3ba8 (diff)
downloadziglings-2ba268a0b0e64b19625776f86a9b8b4810641f84.tar.xz
ziglings-2ba268a0b0e64b19625776f86a9b8b4810641f84.zip
Merge pull request #203 from chrboesch/new_build
workaround for new build system
Diffstat (limited to 'README.md')
-rw-r--r--README.md16
1 files changed, 12 insertions, 4 deletions
diff --git a/README.md b/README.md
index 083d84c..fb7fdf4 100644
--- a/README.md
+++ b/README.md
@@ -40,7 +40,7 @@ Verify the installation and build number of `zig` like so:
```bash
$ zig version
-0.11.0-dev.1844+xxxxxxxxx
+0.11.0-dev.2157+xxxxxxxxx
```
Clone this repository with Git:
@@ -50,11 +50,18 @@ $ git clone https://github.com/ratfactor/ziglings
$ cd ziglings
```
-Then run `zig build` and follow the instructions to begin!
+Then run `zig build 1` and follow the instructions to begin!
```bash
-$ zig build
+$ zig build 1
```
+## Note
+Due to Zig's new build system, exercises can currently only be run manually with their number!
+
+```bash
+$ zig build xy
+```
+We hope to be able to offer this again soon in the automatic way.
## A Note About Versions
@@ -80,7 +87,8 @@ about input:
### Version Changes
-Version-0.11.0-dev.1844+xxxxxxxxx
+Version-0.11.0-dev.2157+xxxxxxxxx
+* *2023-02-21* zig 0.11.0-dev.2157 - changes in `build system` - new: parallel processing of the build steps
* *2023-02-21* zig 0.11.0-dev.1711 - changes in `for loops` - new: Multi-Object For-Loops + Struct-of-Arrays
* *2023-02-12* zig 0.11.0-dev.1638 - changes in `std.Build` cache_root now returns a directory struct
* *2023-02-04* zig 0.11.0-dev.1568 - changes in `std.Build` (combine `std.build` and `std.build.Builder` into `std.Build`)