From 2c2e035e86d523f4c6f93e9b218cd1889a4da2cd Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Wed, 4 Mar 2026 22:14:00 -0500 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 17f8c92..18227c1 100644 --- a/README.md +++ b/README.md @@ -139,7 +139,7 @@ You can either specify specific Julia versions or version ranges. If you specify - `'pre'` will install the latest prerelease build (RCs, betas, and alphas). - `'nightly'` will install the latest nightly build. - `'1.7-nightly'` will install the latest nightly build for the upcoming 1.7 release. This version will only be available during certain phases of the Julia release cycle. -- `'min'` will install the earliest supported version of Julia compatible with the project. Especially useful in monorepos. +- `'min'` will install the earliest supported major/minor version of Julia compatible with the project. Especially useful in monorepos. Note: `min` chooses the lowest major/minor, but gives the latest patch. For example, for a Julia `[compat]` entry of `julia = "1.10"`, `min` would resolve to e.g. `1.10.10` (NOT `1.10.0`). If you specifically require e.g. 1.10.0, please specify that manually (instead of using `min`). Internally the action uses node's semver package to resolve version ranges. Its [documentation](https://github.com/npm/node-semver#advanced-range-syntax) contains more details on the version range syntax. You can test what version will be selected for a given input in this JavaScript [REPL](https://repl.it/@SaschaMann/setup-julia-version-logic).