You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current project is using Zig 0.13.
Now that Zig 0.14 is released we should plan the migration to it.
Describe the desired state
0.14 is the minimum version supported by the repo.
Proposed implementation
There are 2 particular breaking changes that we need to amend:
@setCold is now @branchHint, used in here and here
attributes.Attributes.from uses metaprogramming to convert the anytype fields passed to populate attributes. This is changed and needs an update, it can be done by looking at what the std.fmt namespace printing is doing
We can also specify the minimum Zig version in build.zig.zon, although that's not enforced AFAICT.
The text was updated successfully, but these errors were encountered:
Describe the current state
The current project is using Zig 0.13.
Now that Zig 0.14 is released we should plan the migration to it.
Describe the desired state
0.14 is the minimum version supported by the repo.
Proposed implementation
There are 2 particular breaking changes that we need to amend:
@setCold
is now@branchHint
, used in here and hereattributes.Attributes.from uses metaprogramming to convert the
anytype
fields passed to populate attributes. This is changed and needs an update, it can be done by looking at what thestd.fmt
namespace printing is doingWe can also specify the minimum Zig version in
build.zig.zon
, although that's not enforced AFAICT.The text was updated successfully, but these errors were encountered: