Skip to content

Commit d572302

Browse files
authored
Merge pull request #342 from ratfactor/v4246
Upgrade to Zig version 4246
2 parents d67789c + 3ee6c6e commit d572302

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ Verify the installation and build number of `zig` like so:
4545

4646
```
4747
$ zig version
48-
0.11.0-dev.3853+xxxxxxxxx
48+
0.11.0-dev.4246+xxxxxxxxx
4949
```
5050

5151
Clone this repository with Git:
@@ -89,7 +89,8 @@ that if you update one, you may need to also update the other.
8989

9090
### Version Changes
9191

92-
Version-0.11.0-dev.3853+cc2daae47
92+
Version-0.11.0-dev.4246+71dfce31b
93+
* *2023-06-26* zig 0.11.0-dev.4246 - changes in compile step (now it can be null)
9394
* *2023-06-26* zig 0.11.0-dev.3853 - removal of destination type from all cast builtins
9495
* *2023-06-20* zig 0.11.0-dev.3747 - `@enumToInt` is now `@intFromEnum` and `@intToFloat` is now `@floatFromInt`
9596
* *2023-05-25* zig 0.11.0-dev.3295 - `std.debug.TTY` is now `std.io.tty`

src/compat.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const print = if (@hasDecl(debug, "print")) debug.print else debug.warn;
1515
// When changing this version, be sure to also update README.md in two places:
1616
// 1) Getting Started
1717
// 2) Version Changes
18-
const needed_version_str = "0.11.0-dev.3853";
18+
const needed_version_str = "0.11.0-dev.4246";
1919

2020
fn isCompatible() bool {
2121
if (!@hasDecl(builtin, "zig_version") or !@hasDecl(std, "SemanticVersion")) {

0 commit comments

Comments
 (0)