Skip to content

Commit

Permalink
prep for 0.5.0 release
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Dolitsky <jdolitsky@gmail.com>
  • Loading branch information
jdolitsky committed May 10, 2019
1 parent a2d2b59 commit b3b6ce7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,22 +68,22 @@ Install `oras` using [GoFish](https://gofi.sh/):
```
gofish install oras
==> Installing oras...
🐠 oras 0.4.0: installed in 65.131245ms
🐠 oras 0.5.0: installed in 65.131245ms
```

or install manually from the latest [release artifacts](https://github.com/deislabs/oras/releases):
```
# Linux
curl -LO https://github.com/deislabs/oras/releases/download/v0.4.0/oras_0.4.0_linux_amd64.tar.gz
curl -LO https://github.com/deislabs/oras/releases/download/v0.5.0/oras_0.5.0_linux_amd64.tar.gz
# macOS
curl -LO https://github.com/deislabs/oras/releases/download/v0.4.0/oras_0.4.0_darwin_amd64.tar.gz
curl -LO https://github.com/deislabs/oras/releases/download/v0.5.0/oras_0.5.0_darwin_amd64.tar.gz
# unpack, install, dispose
mkdir -p oras-install/
tar -zxf oras_0.4.0_*.tar.gz -C oras-install/
tar -zxf oras_0.5.0_*.tar.gz -C oras-install/
mv oras-install/oras /usr/local/bin/
rm -rf oras_0.4.0_*.tar.gz oras-install/
rm -rf oras_0.5.0_*.tar.gz oras-install/
```

Then, to run:
Expand All @@ -96,7 +96,7 @@ oras help
A public Docker image containing the CLI is available on [Docker Hub](https://hub.docker.com/r/orasbot/oras):

```
docker run -it --rm -v $(pwd):/workspace orasbot/oras:v0.4.0 help
docker run -it --rm -v $(pwd):/workspace orasbot/oras:v0.5.0 help
```

Note: the default WORKDIR in the image is `/workspace`.
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package version

var (
// Version is the current version of the oras.
Version = "0.4.0"
Version = "0.5.0"
// BuildMetadata is the extra build time data
BuildMetadata = "unreleased"
// GitCommit is the git sha1
Expand Down

0 comments on commit b3b6ce7

Please sign in to comment.