Skip to content

Commit

Permalink
Merge pull request #592 from kadel/v0.0.8
Browse files Browse the repository at this point in the history
v0.0.8
  • Loading branch information
kadel authored Jul 20, 2018
2 parents 2b43469 + 292556e commit e7aacdb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.7/odo-darwin-amd64 -o /usr/local/bin/odo && chmod +x /usr/local/bin/odo
sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.8/odo-darwin-amd64 -o /usr/local/bin/odo && 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.7/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.0.8/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.7/odo-linux-amd64 -o /usr/local/bin/odo && chmod +x /usr/local/bin/odo
sudo curl -L https://github.com/redhat-developer/odo/releases/download/v0.0.8/odo-linux-amd64 -o /usr/local/bin/odo && 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.7/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.0.8/odo-linux-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo'
```

#### Windows
Expand Down
2 changes: 1 addition & 1 deletion cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

var (
// VERSION is version number that will be displayed when running ./odo version
VERSION = "v0.0.7"
VERSION = "v0.0.8"

// 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)"
Expand Down
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -e
OCDEV_VERSION="latest"

# Latest released odo version
LATEST_VERSION="v0.0.7"
LATEST_VERSION="v0.0.8"

GITHUB_RELEASES_URL="https://github.com/redhat-developer/odo/releases/download/${LATEST_VERSION}"
BINTRAY_URL="https://dl.bintray.com/odo/odo/latest"
Expand Down

0 comments on commit e7aacdb

Please sign in to comment.