From 9f7669048990b0d0c186985737e6a6c3bb3f7ecc Mon Sep 17 00:00:00 2001 From: Josh Dolitsky Date: Fri, 19 Apr 2019 12:37:00 -0500 Subject: [PATCH] prep for 0.4.0 release Signed-off-by: Josh Dolitsky --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index c459e2a6d..406a41be0 100644 --- a/README.md +++ b/README.md @@ -68,22 +68,22 @@ Install `oras` using [GoFish](https://gofi.sh/): ``` gofish install oras ==> Installing oras... -🐠 oras 0.3.3: installed in 65.131245ms +🐠 oras 0.4.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.3.3/oras_0.3.3_linux_amd64.tar.gz +curl -LO https://github.com/deislabs/oras/releases/download/v0.4.0/oras_0.4.0_linux_amd64.tar.gz # macOS -curl -LO https://github.com/deislabs/oras/releases/download/v0.3.3/oras_0.3.3_darwin_amd64.tar.gz +curl -LO https://github.com/deislabs/oras/releases/download/v0.4.0/oras_0.4.0_darwin_amd64.tar.gz # unpack, install, dispose mkdir -p oras-install/ -tar -zxf oras_0.3.3_*.tar.gz -C oras-install/ +tar -zxf oras_0.4.0_*.tar.gz -C oras-install/ mv oras-install/oras /usr/local/bin/ -rm -rf oras_0.3.3_*.tar.gz oras-install/ +rm -rf oras_0.4.0_*.tar.gz oras-install/ ``` Then, to run: @@ -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.3.3 help +docker run -it --rm -v $(pwd):/workspace orasbot/oras:v0.4.0 help ``` Note: the default WORKDIR in the image is `/workspace`.