Skip to content

Commit 4c2c33a

Browse files
authored
Release v1.10.0 (#272)
1 parent 406fa03 commit 4c2c33a

File tree

2 files changed

+43
-1
lines changed

2 files changed

+43
-1
lines changed

CHANGELOG.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
v1.10.0 Release - 01/07/2021
2+
3+
Highlights:
4+
* :sparkles: Add new output format JUnit [#254](https://github.com/GoogleContainerTools/container-structure-test/pull/254)
5+
* Produce linux/s390x and linux/ppc64le binaries to use in container_test [#269](https://github.com/GoogleContainerTools/container-structure-test/pull/269)
6+
7+
Big thanks to everyone who contributed to this release:
8+
* barthy1
9+
* charlyx
10+
11+
## Distribution
12+
13+
container-structure-test is distributed in binary form for Linux (arm64 and amd64) and OS X systems for the v1.10.0 release, as well as a container image for running tests in Google Cloud Builder.
14+
15+
Binaries are available on Google Cloud Storage. The direct GCS links are:
16+
[Darwin/amd64](https://storage.googleapis.com/container-structure-test/v1.10.0/container-structure-test-darwin-amd64)
17+
[Linux/amd64](https://storage.googleapis.com/container-structure-test/v1.10.0/container-structure-test-linux-amd64)
18+
[Linux/arm64](https://storage.googleapis.com/container-structure-test/v1.10.0/container-structure-test-linux-arm64)
19+
20+
The container image can be found at `gcr.io/gcp-runtimes/container-structure-test:v1.10.0`.
21+
22+
## Installation
23+
24+
### OSX
25+
```shell
26+
curl -LO https://storage.googleapis.com/container-structure-test/v1.10.0/container-structure-test-darwin-amd64 && mv container-structure-test-darwin-amd64 container-structure-test && chmod +x container-structure-test && sudo mv container-structure-test /usr/local/bin/
27+
```
28+
Feel free to leave off the `sudo mv container-structure-test /usr/local/bin` if you would like to add container-structure-test to your path manually.
29+
30+
### Linux
31+
amd64:
32+
```shell
33+
curl -LO https://storage.googleapis.com/container-structure-test/v1.10.0/container-structure-test-linux-amd64 && mv container-structure-test-linux-amd64 container-structure-test && chmod +x container-structure-test && sudo mv container-structure-test /usr/local/bin/
34+
```
35+
arm64:
36+
```shell
37+
curl -LO https://storage.googleapis.com/container-structure-test/v1.10.0/container-structure-test-linux-arm64 && mv container-structure-test-linux-arm64 container-structure-test && chmod +x container-structure-test && sudo mv container-structure-test /usr/local/bin/
38+
```
39+
Feel free to leave off the `sudo mv container-structure-test /usr/local/bin` if you would like to add container-structure-test to your path manually.
40+
41+
## Usage
42+
Documentation is available [here](https://github.com/GoogleCloudPlatform/container-structure-test/blob/master/README.md)

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
# Bump these on release
1616
VERSION_MAJOR ?= 1
17-
VERSION_MINOR ?= 9
17+
VERSION_MINOR ?= 10
1818
VERSION_BUILD ?= 0
1919

2020
VERSION ?= v$(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_BUILD)

0 commit comments

Comments
 (0)