Skip to content

Commit

Permalink
install: button link to Clojure CLI tool release page
Browse files Browse the repository at this point in the history
Update release number in example to 1.11.1.1413
  • Loading branch information
practicalli-johnny committed Sep 15, 2023
1 parent fc18019 commit 86b0733
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

# Unreleased

## Added
- button link to Clojure CLI releases changelog to view available versions


# 2023-08-14

## Added
Expand Down
10 changes: 6 additions & 4 deletions docs/install/clojure-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 86b0733

Please sign in to comment.