From 8b8d2a6caab51012c27673743643b31c9f7b7539 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Thu, 12 Jan 2023 20:10:46 +0100 Subject: Update README.md Added action item for interfaces --- README.md | 1 + 1 file changed, 1 insertion(+) (limited to 'README.md') diff --git a/README.md b/README.md index 5a82e26..737f58d 100644 --- a/README.md +++ b/README.md @@ -160,6 +160,7 @@ Core Language * [x] Quoted identifiers @"" * [x] Anonymous structs/tuples/lists * [ ] Async <--- IN PROGRESS! +* [ ] Interfaces ## Contributing -- cgit v1.2.3 From 029839cb834fdb89cb76768ab0b3451150df59e3 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sat, 14 Jan 2023 12:56:52 +0100 Subject: update readme for new ziglang version --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'README.md') diff --git a/README.md b/README.md index 737f58d..2f946de 100644 --- a/README.md +++ b/README.md @@ -61,8 +61,8 @@ $ zig build The Zig language is under very active development. In order to be current, Ziglings tracks **development** builds of the Zig compiler rather than -versioned **release** builds. The last stable release was `0.9.1`, but Ziglings -needs a dev build with pre-release version "0.10.0" and a build number at least +versioned **release** builds. The last stable release was `0.10.0`, but Ziglings +needs a dev build with pre-release version "0.11.0" and a build number at least as high as that shown in the example version check above. It is likely that you'll download a build which is _greater_ than the minimum. @@ -81,6 +81,8 @@ about input: ### Version Changes +Version-0.11.0-dev.1302+d813cef42 +* *2023-01-14* zig 0.11.0-dev.1302 - changes in `@addWithOverflow` in builtin functions * *2022-09-09* zig 0.10.0-dev.3978 - change in `NativeTargetInfo.detect` in build * *2022-09-06* zig 0.10.0-dev.3880 - Ex 074 correctly fails again: comptime array len * *2022-08-29* zig 0.10.0-dev.3685 - `@typeName()` output change, stage1 req. for async -- cgit v1.2.3 From 27b783201614065ca3ea38a79f890b5639f6ad08 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sat, 14 Jan 2023 13:12:24 +0100 Subject: entered current zig version number --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 2f946de..5dd88e4 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.3978+xxxxxxxxx +0.11.0-dev.1302+xxxxxxxxx ``` Clone this repository with Git: -- cgit v1.2.3 From bfb1d95a1fa22c2859fda60c8d526156d5d580e4 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sat, 14 Jan 2023 16:02:16 +0100 Subject: changes from @typeInfo in Readme noted --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index 5dd88e4..ba5f03c 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ about input: ### Version Changes Version-0.11.0-dev.1302+d813cef42 -* *2023-01-14* zig 0.11.0-dev.1302 - changes in `@addWithOverflow` in builtin functions +* *2023-01-14* zig 0.11.0-dev.1302 - changes in `@addWithOverflow` (now returns a tuple) and `@typeInfo` * *2022-09-09* zig 0.10.0-dev.3978 - change in `NativeTargetInfo.detect` in build * *2022-09-06* zig 0.10.0-dev.3880 - Ex 074 correctly fails again: comptime array len * *2022-08-29* zig 0.10.0-dev.3685 - `@typeName()` output change, stage1 req. for async -- cgit v1.2.3 From f8e960faebdbe96267a8179fca25f216e9890645 Mon Sep 17 00:00:00 2001 From: Chris Boesch Date: Sat, 21 Jan 2023 14:19:48 +0100 Subject: added note for async functions --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'README.md') diff --git a/README.md b/README.md index ba5f03c..8e6445d 100644 --- a/README.md +++ b/README.md @@ -82,7 +82,7 @@ about input: ### Version Changes Version-0.11.0-dev.1302+d813cef42 -* *2023-01-14* zig 0.11.0-dev.1302 - changes in `@addWithOverflow` (now returns a tuple) and `@typeInfo` +* *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 * *2022-09-06* zig 0.10.0-dev.3880 - Ex 074 correctly fails again: comptime array len * *2022-08-29* zig 0.10.0-dev.3685 - `@typeName()` output change, stage1 req. for async -- cgit v1.2.3