Skip to content

Commit

Permalink
Prep for v0.11.0 release (#243)
Browse files Browse the repository at this point in the history
Signed-off-by: Josh Dolitsky <josh@dolit.ski>
  • Loading branch information
jdolitsky authored Mar 16, 2021
1 parent f13f5cb commit ec34f51
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: setup go environment
uses: actions/setup-go@v1
with:
go-version: '1.15.2'
go-version: '1.16.2'
- name: run unit tests
run: make test
- name: upload coverage report
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: setup go environment
uses: actions/setup-go@v1
with:
go-version: '1.15.7'
go-version: '1.16.2'
- name: upload coverage report
uses: actions/upload-artifact@master
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-github.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- name: setup go environment
uses: actions/setup-go@v1
with:
go-version: '1.15.7'
go-version: '1.16.2'
- name: run goreleaser
uses: goreleaser/goreleaser-action@v2
with:
Expand Down
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.9.0: installed in 65.131245ms
🐠 oras 0.11.0: 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.9.0/oras_0.9.0_linux_amd64.tar.gz
curl -LO https://github.com/deislabs/oras/releases/download/v0.11.0/oras_0.11.0_linux_amd64.tar.gz
mkdir -p oras-install/
tar -zxf oras_0.9.0_*.tar.gz -C oras-install/
tar -zxf oras_0.11.0_*.tar.gz -C oras-install/
mv oras-install/oras /usr/local/bin/
rm -rf oras_0.9.0_*.tar.gz oras-install/
rm -rf oras_0.11.0_*.tar.gz oras-install/
```

- macOS

```sh
curl -LO https://github.com/deislabs/oras/releases/download/v0.9.0/oras_0.9.0_darwin_amd64.tar.gz
curl -LO https://github.com/deislabs/oras/releases/download/v0.11.0/oras_0.11.0_darwin_amd64.tar.gz
mkdir -p oras-install/
tar -zxf oras_0.9.0_*.tar.gz -C oras-install/
tar -zxf oras_0.11.0_*.tar.gz -C oras-install/
mv oras-install/oras /usr/local/bin/
rm -rf oras_0.9.0_*.tar.gz oras-install/
rm -rf oras_0.11.0_*.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.9.0/oras_0.9.0_windows_amd64.tar.gz
tar.exe -xvzf oras_0.9.0_windows_amd64.tar.gz
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
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.9.0 help
docker run -it --rm -v $(pwd):/workspace ghcr.io/deislabs/oras:v0.11.0 help
```

> Note: the default WORKDIR in the image is `/workspace`.
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/deislabs/oras

go 1.15
go 1.16

replace (
// WARNING! Do NOT replace these without also replacing their lines in the `require` stanza below.
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.10.0"
Version = "0.11.0"
// BuildMetadata is the extra build time data
BuildMetadata = "unreleased"
// GitCommit is the git sha1
Expand Down

0 comments on commit ec34f51

Please sign in to comment.