From 2fa18025fe6c987a3c1e83ccd9d8e7ef31b8ad21 Mon Sep 17 00:00:00 2001 From: Fons van der Plas Date: Fri, 11 Oct 2024 01:14:50 +0200 Subject: [PATCH] README examples: '1' for the latest v1 (#296) * README examples: '1' for latest * Update README.md Co-authored-by: Dilum Aluthge --------- Co-authored-by: Ian Butterworth Co-authored-by: Dilum Aluthge --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e783f10f..a20b3d50 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,7 @@ You can either specify specific Julia versions or version ranges. If you specify - `'~1.3.0-rc1'` is a **tilde** version range that includes pre-releases of `1.3.0` starting at `rc1`. It matches all versions `≥ 1.3.0-rc1` and `< 1.4.0`. - `'^1.3.0-0'` is a **caret** version range that includes _all_ pre-releases of `1.3.0`. It matches all versions `≥ 1.3.0-` and `< 2.0.0`. - `'~1.3.0-0'` is a **tilde** version range that includes _all_ pre-releases of `1.3.0`. It matches all versions `≥ 1.3.0-` and `< 1.4.0`. +- `'1'` will install the latest v1 version of Julia. - `'lts'` will install the latest LTS build. - `'pre'` will install the latest prerelease build (RCs, betas, and alphas). - `'nightly'` will install the latest nightly build.