Skip to content
This repository was archived by the owner on Aug 14, 2020. It is now read-only.

Commit 05d50e6

Browse files
committed
version: bump to v0.8.2
1 parent 33fefe1 commit 05d50e6

File tree

15 files changed

+28
-22
lines changed

15 files changed

+28
-22
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
### v0.8.2
2+
3+
Minor release of the spec with two tooling fixes:
4+
- Updated Godeps to the latest k8s.io packages, which should help downstream users attempting to vendor schema code (#607)
5+
- Minor fixes to the ACE validator (#605)
6+
17
### v0.8.1
28

39
Minor release of the spec which introduces one new backwards-compatible feature: the field `readOnlyRootFS` in the pod spec.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ $ find /tmp/my-app/
8383
$ cat /tmp/my-app/manifest
8484
{
8585
"acKind": "ImageManifest",
86-
"acVersion": "0.8.1",
86+
"acVersion": "0.8.2",
8787
"name": "my-app",
8888
"labels": [
8989
{"name": "os", "value": "linux"},
@@ -115,7 +115,7 @@ and verify that the manifest was embedded appropriately
115115
$ tar xf /tmp/my-app.aci manifest -O | python -m json.tool
116116
{
117117
"acKind": "ImageManifest",
118-
"acVersion": "0.8.1",
118+
"acVersion": "0.8.2",
119119
"annotations": null,
120120
"app": {
121121
"environment": [],

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.1+git
1+
0.8.2

ace/image_manifest_main.json.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"acVersion": "0.8.1",
2+
"acVersion": "0.8.2",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-main",
55
"labels": [
6-
{ "name": "version", "value": "0.8.1" },
6+
{ "name": "version", "value": "0.8.2" },
77
{ "name": "os", "value": "@GOOS@" },
88
{ "name": "arch", "value": "@GOARCH@" }
99
],

ace/image_manifest_sidekick.json.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"acVersion": "0.8.1",
2+
"acVersion": "0.8.2",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-sidekick",
55
"labels": [
6-
{ "name": "version", "value": "0.8.1" },
6+
{ "name": "version", "value": "0.8.2" },
77
{ "name": "os", "value": "@GOOS@" },
88
{ "name": "arch", "value": "@GOARCH@" }
99
],

aci/file_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func newTestACI(usedotslash bool) (*os.File, error) {
2828
return nil, err
2929
}
3030

31-
manifestBody := `{"acKind":"ImageManifest","acVersion":"0.8.1","name":"example.com/app"}`
31+
manifestBody := `{"acKind":"ImageManifest","acVersion":"0.8.2","name":"example.com/app"}`
3232

3333
gw := gzip.NewWriter(tf)
3434
tw := tar.NewWriter(gw)

examples/image.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"acKind": "ImageManifest",
3-
"acVersion": "0.8.1",
3+
"acVersion": "0.8.2",
44
"name": "example.com/reduce-worker",
55
"labels": [
66
{

examples/pod_runtime.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"acKind": "PodManifest",
3-
"acVersion": "0.8.1",
3+
"acVersion": "0.8.2",
44
"apps": [
55
{
66
"name": "reduce-worker",

pkg/acirenderer/acirenderer_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2149,7 +2149,7 @@ func TestEmptyRootFsDir(t *testing.T) {
21492149
`
21502150
{
21512151
"acKind": "ImageManifest",
2152-
"acVersion": "0.8.1",
2152+
"acVersion": "0.8.2",
21532153
"name": "example.com/test_empty_rootfs"
21542154
}
21552155
`,
@@ -2175,7 +2175,7 @@ func TestEmptyRootFsDir(t *testing.T) {
21752175
`
21762176
{
21772177
"acKind": "ImageManifest",
2178-
"acVersion": "0.8.1",
2178+
"acVersion": "0.8.2",
21792179
"name": "example.com/test_empty_rootfs_pwl",
21802180
"pathWhitelist": ["foo"]
21812181
}

schema/image_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ func TestEmptyApp(t *testing.T) {
2020
imj := `
2121
{
2222
"acKind": "ImageManifest",
23-
"acVersion": "0.8.1",
23+
"acVersion": "0.8.2",
2424
"name": "example.com/test"
2525
}
2626
`

0 commit comments

Comments
 (0)