Skip to content

Commit b3b6ce7

Browse files
committed
prep for 0.5.0 release
Signed-off-by: Josh Dolitsky <jdolitsky@gmail.com>
1 parent a2d2b59 commit b3b6ce7

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,22 +68,22 @@ Install `oras` using [GoFish](https://gofi.sh/):
6868
```
6969
gofish install oras
7070
==> Installing oras...
71-
🐠 oras 0.4.0: installed in 65.131245ms
71+
🐠 oras 0.5.0: installed in 65.131245ms
7272
```
7373

7474
or install manually from the latest [release artifacts](https://github.com/deislabs/oras/releases):
7575
```
7676
# Linux
77-
curl -LO https://github.com/deislabs/oras/releases/download/v0.4.0/oras_0.4.0_linux_amd64.tar.gz
77+
curl -LO https://github.com/deislabs/oras/releases/download/v0.5.0/oras_0.5.0_linux_amd64.tar.gz
7878
7979
# macOS
80-
curl -LO https://github.com/deislabs/oras/releases/download/v0.4.0/oras_0.4.0_darwin_amd64.tar.gz
80+
curl -LO https://github.com/deislabs/oras/releases/download/v0.5.0/oras_0.5.0_darwin_amd64.tar.gz
8181
8282
# unpack, install, dispose
8383
mkdir -p oras-install/
84-
tar -zxf oras_0.4.0_*.tar.gz -C oras-install/
84+
tar -zxf oras_0.5.0_*.tar.gz -C oras-install/
8585
mv oras-install/oras /usr/local/bin/
86-
rm -rf oras_0.4.0_*.tar.gz oras-install/
86+
rm -rf oras_0.5.0_*.tar.gz oras-install/
8787
```
8888

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

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

102102
Note: the default WORKDIR in the image is `/workspace`.

internal/version/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package version
22

33
var (
44
// Version is the current version of the oras.
5-
Version = "0.4.0"
5+
Version = "0.5.0"
66
// BuildMetadata is the extra build time data
77
BuildMetadata = "unreleased"
88
// GitCommit is the git sha1

0 commit comments

Comments
 (0)