diff --git a/README.md b/README.md index a3535745..eacc19cb 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ curl -fsSL https://raw.githubusercontent.com/databricks/setup-cli/main/install.s To install a specific version, you can replace `main` with a specific release tag: ```bash -curl -fsSL https://raw.githubusercontent.com/databricks/setup-cli/v0.297.1/install.sh | sh +curl -fsSL https://raw.githubusercontent.com/databricks/setup-cli/v0.297.2/install.sh | sh ``` ## GitHub Actions @@ -43,7 +43,7 @@ To always use the latest version of the Databricks CLI, use the action from the In case you need to use a specific version of the Databricks CLI, use the action from a release tag: ```yml -- uses: databricks/setup-cli@v0.297.1 +- uses: databricks/setup-cli@v0.297.2 ``` Replace the tag with the version you want to use. @@ -53,7 +53,7 @@ Alternatively, you can specify the version as a parameter to the action: ```yml - uses: databricks/setup-cli@main with: - version: 0.297.1 + version: 0.297.2 ``` ## Preview notice diff --git a/VERSION b/VERSION index c76b7cd1..958af9d6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.297.1 +0.297.2 diff --git a/install.sh b/install.sh index dfec9ebe..4a0f2b2e 100755 --- a/install.sh +++ b/install.sh @@ -3,7 +3,7 @@ # Note: we cannot assume we're running bash and use the set -euo pipefail approach. set -e -VERSION="0.297.1" +VERSION="0.297.2" FILE="databricks_cli_$VERSION" # Include operating system in file name.