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

Commit cbe99b7

Browse files
author
Casey Callendrello
committed
version: bump to v0.8.11
1 parent d6679c6 commit cbe99b7

16 files changed

+31
-23
lines changed

CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
### v0.8.11
2+
This is a minor release of the spec which resolves some small issues:
3+
4+
- The distinction between ACI_ARCH and GOOS was clarified (#688)
5+
- LabelsFromMap is now consistently ordered (#689)
6+
- Environment variables can contain more characters (#691)
7+
- A bug in parsing errno was fixed (#692)
8+
19
### v0.8.10
210
This is a minor release of the spec which resolves some small issues.
311

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ $ find /tmp/my-app/
9898
$ cat /tmp/my-app/manifest
9999
{
100100
"acKind": "ImageManifest",
101-
"acVersion": "0.8.10",
101+
"acVersion": "0.8.11",
102102
"name": "my-app",
103103
"labels": [
104104
{"name": "os", "value": "linux"},
@@ -130,7 +130,7 @@ and verify that the manifest was embedded appropriately
130130
$ tar xf /tmp/my-app.aci manifest -O | python -m json.tool
131131
{
132132
"acKind": "ImageManifest",
133-
"acVersion": "0.8.10",
133+
"acVersion": "0.8.11",
134134
"annotations": null,
135135
"app": {
136136
"environment": [],

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.10+git
1+
0.8.11

ace/image_manifest_main.json.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"acVersion": "0.8.10",
2+
"acVersion": "0.8.11",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-main",
55
"labels": [
6-
{ "name": "version", "value": "0.8.10" },
6+
{ "name": "version", "value": "0.8.11" },
77
{ "name": "os", "value": "@ACI_OS@" },
88
{ "name": "arch", "value": "@ACI_ARCH@" }
99
],

ace/image_manifest_sidekick.json.in

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"acVersion": "0.8.10",
2+
"acVersion": "0.8.11",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-sidekick",
55
"labels": [
6-
{ "name": "version", "value": "0.8.10" },
6+
{ "name": "version", "value": "0.8.11" },
77
{ "name": "os", "value": "@ACI_OS@" },
88
{ "name": "arch", "value": "@ACI_ARCH@" }
99
],

aci/file_test.go

+1-1
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.10","name":"example.com/app"}`
31+
manifestBody := `{"acKind":"ImageManifest","acVersion":"0.8.11","name":"example.com/app"}`
3232

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

examples/image.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"acKind": "ImageManifest",
3-
"acVersion": "0.8.10",
3+
"acVersion": "0.8.11",
44
"name": "example.com/reduce-worker",
55
"labels": [
66
{

examples/pod_runtime.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"acKind": "PodManifest",
3-
"acVersion": "0.8.10",
3+
"acVersion": "0.8.11",
44
"apps": [
55
{
66
"name": "reduce-worker",

pkg/acirenderer/acirenderer_test.go

+2-2
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.10",
2152+
"acVersion": "0.8.11",
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.10",
2178+
"acVersion": "0.8.11",
21792179
"name": "example.com/test_empty_rootfs_pwl",
21802180
"pathWhitelist": ["foo"]
21812181
}

schema/image_test.go

+1-1
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.10",
23+
"acVersion": "0.8.11",
2424
"name": "example.com/test"
2525
}
2626
`

schema/lastditch/image_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func TestBogusImageManifest(t *testing.T) {
7777
bogus := []string{`
7878
{
7979
"acKind": "Bogus",
80-
"acVersion": "0.8.10",
80+
"acVersion": "0.8.11",
8181
}
8282
`, `
8383
<html>
@@ -101,7 +101,7 @@ func imgJ(name, labels, extra string) string {
101101
{
102102
%s
103103
"acKind": "ImageManifest",
104-
"acVersion": "0.8.10",
104+
"acVersion": "0.8.11",
105105
"name": "%s",
106106
"labels": %s
107107
}`, extra, name, labels)
@@ -110,7 +110,7 @@ func imgJ(name, labels, extra string) string {
110110
// imgI returns an image manifest instance with given name and labels
111111
func imgI(name string, labels Labels) ImageManifest {
112112
return ImageManifest{
113-
ACVersion: "0.8.10",
113+
ACVersion: "0.8.11",
114114
ACKind: "ImageManifest",
115115
Name: name,
116116
Labels: labels,

schema/lastditch/pod_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ func TestBogusPodManifest(t *testing.T) {
109109
`
110110
{
111111
"acKind": "Bogus",
112-
"acVersion": "0.8.10",
112+
"acVersion": "0.8.11",
113113
}
114114
`,
115115
`
@@ -134,15 +134,15 @@ func podJ(apps, extra string) string {
134134
{
135135
%s
136136
"acKind": "PodManifest",
137-
"acVersion": "0.8.10",
137+
"acVersion": "0.8.11",
138138
"apps": %s
139139
}`, extra, apps)
140140
}
141141

142142
// podI returns a pod manifest instance with given apps
143143
func podI(apps AppList) PodManifest {
144144
return PodManifest{
145-
ACVersion: "0.8.10",
145+
ACVersion: "0.8.11",
146146
ACKind: "PodManifest",
147147
Apps: apps,
148148
}

schema/pod_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ func TestPodManifestUniqueVolumeNames(t *testing.T) {
8989

9090
pmj := `
9191
{
92-
"acVersion": "0.8.10",
92+
"acVersion": "0.8.11",
9393
"acKind": "PodManifest",
9494
"apps": [
9595
],

schema/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ const (
2222
// version represents the canonical version of the appc spec and tooling.
2323
// For now, the schema and tooling is coupled with the spec itself, so
2424
// this must be kept in sync with the VERSION file in the root of the repo.
25-
version string = "0.8.10+git"
25+
version string = "0.8.11"
2626
)
2727

2828
var (

spec/aci.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ JSON Schema for the Image Manifest (app image manifest, ACI manifest), conformin
7878
```json
7979
{
8080
"acKind": "ImageManifest",
81-
"acVersion": "0.8.10",
81+
"acVersion": "0.8.11",
8282
"name": "example.com/reduce-worker",
8383
"labels": [
8484
{

spec/pods.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ JSON Schema for the Pod Manifest, conforming to [RFC4627](https://tools.ietf.org
2828

2929
```json
3030
{
31-
"acVersion": "0.8.10",
31+
"acVersion": "0.8.11",
3232
"acKind": "PodManifest",
3333
"apps": [
3434
{

0 commit comments

Comments
 (0)