diff --git a/Makefile b/Makefile index d7ce13fdc..6bd18d293 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION=v0.0.4 +VERSION=v0.0.5 OUT_DIR=dist CLI_NAME?=cf diff --git a/docs/releases/release_notes.md b/docs/releases/release_notes.md index 46edd2991..68a16fda4 100644 --- a/docs/releases/release_notes.md +++ b/docs/releases/release_notes.md @@ -7,10 +7,10 @@ VERSION=$(curl --silent "https://api.github.com/repos/codefresh-io/cli-v2/releas curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/$VERSION/cli-v2-linux-amd64.tar.gz | tar zx # move the binary to your $PATH -mv ./cli-v2-* /usr/local/bin/cli-v2 +mv ./cf-* /usr/local/bin/cf # check the installation -cli-v2 version +cf version ``` ### Mac @@ -22,8 +22,8 @@ VERSION=$(curl --silent "https://api.github.com/repos/codefresh-io/cli-v2/releas curl -L --output - https://github.com/codefresh-io/cli-v2/releases/download/$VERSION/cli-v2-darwin-amd64.tar.gz | tar zx # move the binary to your $PATH -mv ./cli-v2-* /usr/local/bin/cli-v2 +mv ./cf-* /usr/local/bin/cf # check the installation -cli-v2 version +cf version ```