From 1a7dfd97a10f47f27c0577e3c5109ab42e5347d3 Mon Sep 17 00:00:00 2001 From: Suraj Narwade Date: Fri, 24 Aug 2018 19:03:05 +0530 Subject: [PATCH] v0.10.0 (#661) --- README.md | 8 ++++---- cmd/version.go | 2 +- scripts/install.sh | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 2efad4fe0b8..d0e7d2ffecd 100644 --- a/README.md +++ b/README.md @@ -40,20 +40,20 @@ curl -L https://github.com/redhat-developer/odo/raw/master/scripts/install.sh | ```sh # Binary installation -sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.9/odo-darwin-amd64 -o /usr/local/bin/odo && sudo chmod +x /usr/local/bin/odo +sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.10.0/odo-darwin-amd64 -o /usr/local/bin/odo && sudo chmod +x /usr/local/bin/odo # Alternative, compressed tarball installation -sudo sh -c 'curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.9/odo-darwin-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo' +sudo sh -c 'curl -L https://github.com/redhat-developer/odo/releases/download/v0.10.0/odo-darwin-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo' ``` #### Linux ```sh # Binary installation -sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.9/odo-linux-amd64 -o /usr/local/bin/odo && sudo chmod +x /usr/local/bin/odo +sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.10.0/odo-linux-amd64 -o /usr/local/bin/odo && sudo chmod +x /usr/local/bin/odo # Alternative, compressed tarball installation -sudo sh -c 'curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.9/odo-linux-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo' +sudo sh -c 'curl -L https://github.com/redhat-developer/odo/releases/download/v0.10.0/odo-linux-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo' ``` #### Windows diff --git a/cmd/version.go b/cmd/version.go index 1a1f55f8341..58377dc32fe 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -11,7 +11,7 @@ import ( var ( // VERSION is version number that will be displayed when running ./odo version - VERSION = "v0.0.9" + VERSION = "v0.10.0" // GITCOMMIT is hash of the commit that wil be displayed when running ./odo version // this will be overwritten when running build like this: go build -ldflags="-X github.com/redhat-developer/odo/cmd.GITCOMMIT=$(GITCOMMIT)" diff --git a/scripts/install.sh b/scripts/install.sh index 855b6da610d..ef6830fcec5 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -7,7 +7,7 @@ set -e OCDEV_VERSION="latest" # Latest released odo version -LATEST_VERSION="v0.0.9" +LATEST_VERSION="v0.10.0" GITHUB_RELEASES_URL="https://github.com/redhat-developer/odo/releases/download/${LATEST_VERSION}" BINTRAY_URL="https://dl.bintray.com/odo/odo/latest"