From 86b0733748e45d0ff18ad76a3e5a6b27c791499a Mon Sep 17 00:00:00 2001 From: John Practicalli <250870+practicalli-john@users.noreply.github.com> Date: Fri, 15 Sep 2023 12:01:11 +0100 Subject: [PATCH] install: button link to Clojure CLI tool release page Update release number in example to 1.11.1.1413 --- CHANGELOG.md | 4 ++++ docs/install/clojure-cli.md | 10 ++++++---- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ca88334f..f05a2bec5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ # Unreleased +## Added +- button link to Clojure CLI releases changelog to view available versions + + # 2023-08-14 ## Added diff --git a/docs/install/clojure-cli.md b/docs/install/clojure-cli.md index 506a08dca..05512fdd3 100644 --- a/docs/install/clojure-cli.md +++ b/docs/install/clojure-cli.md @@ -37,13 +37,15 @@ The Clojure CLI automatically downloads all library dependencies, including the ``` ??? INFO "Include version number for specific release" - Clojure CLI linux install scripts include a number in their name to signify the version of Clojure and the version of Clojure CLI. + Each Clojure CLI version is a number that represents the version of Clojure used and the build version of the Clojure CLI tool, e.g. `1.11.1.1413`. + + [Clojure CLI Releases page](https://clojure.org/releases/tools){target=_blank .md-button} Include the version in the script name for repeatable environments, e.g. in Dockerfile configuration and Continuous Integraion workflows. ```shell title="Clojure CLI install specific version" - curl -L -O https://github.com/clojure/brew-install/releases/1.11.1.1386/download/linux-install.sh && \ - chmod +x linux-install-1.11.1.1386.sh - sudo ./linux-install-1.11.1.1386.sh + curl -L -O https://github.com/clojure/brew-install/releases/1.11.1.1413/download/linux-install.sh && \ + chmod +x linux-install-1.11.1.1413.sh + sudo ./linux-install-1.11.1.1413.sh ``` === "Homebrew"