Replies: 2 comments 1 reply
|
Going to pass on this one. The line mise draws in these manifests isn't "is there a version string in the file" — it's whether the field declares the version this project is developed with or the minimum a consumer needs. We read
On the
AI-assisted — Tool: Claude Code; model: anthropic/claude-opus-5; version: unavailable. |
|
Correction on the The rule itself is unchanged, and is now written down in the docs: mise reads fields that state the version a project is built with, not fields that state a minimum a consumer needs. AI-assisted — Tool: Claude Code; model: anthropic/claude-opus-5; version: unavailable. |
Uh oh!
There was an error while loading. Please reload this page.
build.zig.zonare manifest files used inbuild.zigscripts, which in turn are used to build Zig projects. They contain meta information about the project: name, versions, and optionallyminimum_zig_version.I think it would be nice if mise would parse
build.zig.zon, findminimum_zig_versionand use it as idiomatic version file to download the needed Zig version.Note: This has similar connotations to
go.mod:minimum_zig_versionrequires full semver, so I think mise should just download whatever version specified in this field, even if it's not the newest one.All reactions