From 6843c6ad1d179cebc43112b199c6986848c7dd5b Mon Sep 17 00:00:00 2001 From: Will Vedder Date: Fri, 20 Jan 2023 11:17:37 -0500 Subject: [PATCH] Adding beta install instructions to CHANGELOG (#627) --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f911b4b8..004b9b06c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 Refer to the [v1 migration guide](MIGRATION_GUIDE.md) for instructions on how to navigate breaking changes. +To try the `v1.0.0-beta.1` release: + +```bash +# Binary will be downloaded to "./auth0". +curl -sSfL https://raw.githubusercontent.com/auth0/auth0-cli/main/install.sh | sh -s -- -b . "v1.0.0-beta.1" + +# Note: will only download executable in current directory. +# Intentionally omitted from $PATH to avoid collisions with +# stable versions of the CLI. Append to $PATH at own risk. + +./auth0 --version # Example execution +``` + ### Added - Ability to view user's assigned roles via `auth0 users roles show` [#604]