From e8a1fa6ff9a507b99eedd45745959e8c5b826d9f Mon Sep 17 00:00:00 2001 From: Josh Dolitsky Date: Fri, 25 Jan 2019 15:02:23 -0600 Subject: [PATCH] prep for 0.3.3 release (#48) Signed-off-by: Josh Dolitsky --- .codefresh/master.yml | 2 +- .codefresh/release.yml | 2 +- BUILDING.md | 2 +- README.md | 10 +++++----- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.codefresh/master.yml b/.codefresh/master.yml index 07d88c517..519512ee5 100644 --- a/.codefresh/master.yml +++ b/.codefresh/master.yml @@ -22,5 +22,5 @@ steps: stage: release type: push candidate: ${{BuildDockerImage}} - image_name: ocistorage/${{CF_REPO_NAME}} + image_name: orasbot/${{CF_REPO_NAME}} registry: dockerhub diff --git a/.codefresh/release.yml b/.codefresh/release.yml index 5b31cca3d..186d9b5d7 100644 --- a/.codefresh/release.yml +++ b/.codefresh/release.yml @@ -32,6 +32,6 @@ steps: stage: release type: push candidate: ${{BuildDockerImage}} - image_name: ocistorage/${{CF_REPO_NAME}} + image_name: orasbot/${{CF_REPO_NAME}} tag: ${{CF_BRANCH_TAG_NORMALIZED}} registry: dockerhub diff --git a/BUILDING.md b/BUILDING.md index 50b08875c..1995d318e 100644 --- a/BUILDING.md +++ b/BUILDING.md @@ -64,4 +64,4 @@ and run [.codefresh/release.yml](.codefresh/release.yml). This will result in running [goreleaser](https://goreleaser.com/) to upload release artiacts, as well as push a tag to Docker Hub for -the image `ocistorage/oras`. +the image `orasbot/oras`. diff --git a/README.md b/README.md index d1be4efde..a5673e758 100644 --- a/README.md +++ b/README.md @@ -66,22 +66,22 @@ Install `oras` using [GoFish](https://gofi.sh/): ``` gofish install oras ==> Installing oras... -🐠 oras 0.3.2: installed in 65.131245ms +🐠 oras 0.3.3: 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.2/oras_0.3.2_linux_amd64.tar.gz +curl -LO https://github.com/deislabs/oras/releases/download/v0.3.3/oras_0.3.3_linux_amd64.tar.gz # macOS -curl -LO https://github.com/deislabs/oras/releases/download/v0.3.2/oras_0.3.2_darwin_amd64.tar.gz +curl -LO https://github.com/deislabs/oras/releases/download/v0.3.3/oras_0.3.3_darwin_amd64.tar.gz # unpack, install, dispose mkdir -p oras-install/ -tar -zxf oras_0.3.2_*.tar.gz -C oras-install/ +tar -zxf oras_0.3.3_*.tar.gz -C oras-install/ mv oras-install/oras /usr/local/bin/ -rm -rf oras_0.3.2_*.tar.gz oras-install/ +rm -rf oras_0.3.3_*.tar.gz oras-install/ ``` Then, to run: