mise latest
- Usage:
mise latest [-i --installed] [--minimum-release-age <MINIMUM_RELEASE_AGE>] <TOOL@VERSION> - Effect: read-only
- Source code:
src/cli/latest.rs
Get the latest available version of a tool
Supports prefixes such as node@20 to get the latest version of node 20.
Arguments
<TOOL@VERSION>— Tool to get the latest version of
Flags
-i --installed— Show latest installed instead of available version--minimum-release-age <MINIMUM_RELEASE_AGE>— Only consider versions released before this date or older than this durationSupports absolute dates like "2024-06-01" and relative durations like "90d" or "1y". Overrides per-tool
minimum_release_ageoptions and the globalminimum_release_agesetting.-h --help— Print help
Examples:
$ mise latest node@20 # get the latest version of node 20
20.0.0
$ mise latest node # get the latest stable version of node
20.0.0
$ mise latest node --minimum-release-age 2024-01-01 # latest stable node released before 2024-01-01