Skip to content

Commit

Permalink
maint: prep for 0.11.1 release
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Dolitsky <josh@dolit.ski>
  • Loading branch information
jdolitsky committed Mar 18, 2021
1 parent 2798290 commit 5bfe0ab
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,38 +43,38 @@ ORAS is both a [CLI](#oras-cli) for initial testing and a [Go Module](#oras-go-m
```sh
gofish install oras
==> Installing oras...
🐠 oras 0.11.0: installed in 65.131245ms
🐠 oras 0.11.1: installed in 65.131245ms
```

- Install from the latest [release artifacts](https://github.com/deislabs/oras/releases):

- Linux

```sh
curl -LO https://github.com/deislabs/oras/releases/download/v0.11.0/oras_0.11.0_linux_amd64.tar.gz
curl -LO https://github.com/deislabs/oras/releases/download/v0.11.1/oras_0.11.1_linux_amd64.tar.gz
mkdir -p oras-install/
tar -zxf oras_0.11.0_*.tar.gz -C oras-install/
tar -zxf oras_0.11.1_*.tar.gz -C oras-install/
mv oras-install/oras /usr/local/bin/
rm -rf oras_0.11.0_*.tar.gz oras-install/
rm -rf oras_0.11.1_*.tar.gz oras-install/
```

- macOS

```sh
curl -LO https://github.com/deislabs/oras/releases/download/v0.11.0/oras_0.11.0_darwin_amd64.tar.gz
curl -LO https://github.com/deislabs/oras/releases/download/v0.11.1/oras_0.11.1_darwin_amd64.tar.gz
mkdir -p oras-install/
tar -zxf oras_0.11.0_*.tar.gz -C oras-install/
tar -zxf oras_0.11.1_*.tar.gz -C oras-install/
mv oras-install/oras /usr/local/bin/
rm -rf oras_0.11.0_*.tar.gz oras-install/
rm -rf oras_0.11.1_*.tar.gz oras-install/
```

- Windows

Add `%USERPROFILE%\bin\` to your `PATH` environment variable so that `oras.exe` can be found.
```sh
curl.exe -sLO https://github.com/deislabs/oras/releases/download/v0.11.0/oras_0.11.0_windows_amd64.tar.gz
tar.exe -xvzf oras_0.11.0_windows_amd64.tar.gz
curl.exe -sLO https://github.com/deislabs/oras/releases/download/v0.11.1/oras_0.11.1_windows_amd64.tar.gz
tar.exe -xvzf oras_0.11.1_windows_amd64.tar.gz
mkdir -p %USERPROFILE%\bin\
copy oras.exe %USERPROFILE%\bin\
set PATH=%USERPROFILE%\bin\;%PATH%
Expand All @@ -85,7 +85,7 @@ ORAS is both a [CLI](#oras-cli) for initial testing and a [Go Module](#oras-go-m
A public Docker image containing the CLI is available on [GitHub Container Registry](https://github.com/orgs/deislabs/packages/container/package/oras):

```sh
docker run -it --rm -v $(pwd):/workspace ghcr.io/deislabs/oras:v0.11.0 help
docker run -it --rm -v $(pwd):/workspace ghcr.io/deislabs/oras:v0.11.1 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.11.0"
Version = "0.11.1"
// BuildMetadata is the extra build time data
BuildMetadata = "unreleased"
// GitCommit is the git sha1
Expand Down

0 comments on commit 5bfe0ab

Please sign in to comment.