0.0.16 Release (#1018)

This commit is contained in:
Charlie Drage
2018-11-20 15:28:01 -05:00
committed by GitHub
parent 83c1ee3a46
commit 82968cb05b
4 changed files with 8 additions and 8 deletions

View File

@@ -57,20 +57,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.15/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.0.16/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.15/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.16/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.15/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.0.16/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.15/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.16/odo-linux-amd64.gz | gzip -d > /usr/local/bin/odo; chmod +x /usr/local/bin/odo'
```
#### Windows

View File

@@ -13,7 +13,7 @@ import (
var (
// VERSION is version number that will be displayed when running ./odo version
VERSION = "v0.0.15"
VERSION = "v0.0.16"
// 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)"

View File

@@ -64,7 +64,7 @@ odo --alsologtostderr --log_backtrace_at --log_dir --logtostderr --skip-connecti
search : Search available component & service types.
component : Search component type in catalog
service : Search service type in catalog
component --project --short : Components of application.
component --short : Components of application.
get --app --project --short : Get currently active component
set --app --project : Set active component.
create --app --binary --env --git --local --port --project : Create a new component
@@ -77,7 +77,7 @@ odo --alsologtostderr --log_backtrace_at --log_dir --logtostderr --skip-connecti
logout : Log out of the current OpenShift session
project --short : Perform project operations
create : Create a new project
delete --force : Delete a project
delete --force --short : Delete a project
get --short : Get the active project
list : List all the projects
set --short : Set the current active project

View File

@@ -7,7 +7,7 @@ set -e
ODO_VERSION="latest"
# Latest released odo version
LATEST_VERSION="v0.0.15"
LATEST_VERSION="v0.0.16"
GITHUB_RELEASES_URL="https://github.com/redhat-developer/odo/releases/download/${LATEST_VERSION}"
BINTRAY_URL="https://dl.bintray.com/odo/odo/latest"