Skip to content

Commit

Permalink
Merge pull request #272 from kadel/release-v0.0.3
Browse files Browse the repository at this point in the history
release v0.0.3
  • Loading branch information
kadel authored Mar 27, 2018
2 parents 7a50833 + 05649bf commit 8d30b34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,12 @@ If you don't want to add extra package repositories to your system you can just
For macOS:

```
sudo curl -L "https://github.com/redhat-developer/ocdev/releases/download/v0.0.2/ocdev-darwin-amd64.gz" | gzip -d > /usr/local/bin/ocdev; chmod +x /usr/local/bin/ocdev
sudo curl -L "https://github.com/redhat-developer/ocdev/releases/download/v0.0.3/ocdev-darwin-amd64.gz" | gzip -d > /usr/local/bin/ocdev; chmod +x /usr/local/bin/ocdev
```

For Linux:
```
sudo curl -L "https://github.com/redhat-developer/ocdev/releases/download/v0.0.2/ocdev-linux-amd64.gz" | gzip -d > /usr/local/bin/ocdev; chmod +x /usr/local/bin/ocdev
sudo curl -L "https://github.com/redhat-developer/ocdev/releases/download/v0.0.3/ocdev-linux-amd64.gz" | gzip -d > /usr/local/bin/ocdev; chmod +x /usr/local/bin/ocdev
```

You can also download latest master builds from [Bintray](https://dl.bintray.com/ocdev/ocdev/latest/). This is updated every time there is a change in master git branch.
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 ./ocdev version
VERSION = "v0.0.2"
VERSION = "v0.0.3"

// GITCOMMIT is hash of the commit that wil be displayed when running ./ocdev version
// this will be overwritten when running build like this: go build -ldflags="-X github.com/redhat-developer/ocdev/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 ocdev version
LATEST_VERSION="v0.0.2"
LATEST_VERSION="v0.0.3"

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

0 comments on commit 8d30b34

Please sign in to comment.