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

Commit b005875

Browse files
author
Brandon Philips
committed
SPEC: bump to 0.3.0
Lets cut another release.
1 parent 2fee340 commit b005875

10 files changed

+14
-14
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ $ find /tmp/my-app/
2626
$ cat /tmp/my-app/manifest
2727
{
2828
"acKind": "ImageManifest",
29-
"acVersion": "0.2.0",
29+
"acVersion": "0.3.0",
3030
"name": "my-app",
3131
"labels": [
3232
{"name": "os", "value": "linux"},
@@ -58,7 +58,7 @@ and verify that the manifest was embedded appropriately
5858
tar xf /tmp/my-app.aci manifest -O | python -m json.tool
5959
{
6060
"acKind": "ImageManifest",
61-
"acVersion": "0.2.0",
61+
"acVersion": "0.3.0",
6262
"annotations": null,
6363
"app": {
6464
"environment": [],

SPEC.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ JSON Schema for the Image Manifest (app image manifest, ACI manifest), conformin
381381
```
382382
{
383383
"acKind": "ImageManifest",
384-
"acVersion": "0.2.0",
384+
"acVersion": "0.3.0",
385385
"name": "example.com/reduce-worker",
386386
"labels": [
387387
{
@@ -556,7 +556,7 @@ JSON Schema for the Container Runtime Manifest (container manifest), conforming
556556
```
557557
{
558558
559-
"acVersion": "0.2.0",
559+
"acVersion": "0.3.0",
560560
"acKind": "ContainerRuntimeManifest",
561561
"uuid": "6733C088-A507-4694-AABF-EDBE4FC5266F",
562562
"apps": [

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0+git
1+
0.3.0+git

ace/image_manifest_main.json

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

ace/image_manifest_sidekick.json

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

aci/file_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ func newTestACI() (*os.File, error) {
1414
return nil, err
1515
}
1616

17-
manifestBody := `{"acKind":"ImageManifest","acVersion":"0.2.0","name":"example.com/app"}`
17+
manifestBody := `{"acKind":"ImageManifest","acVersion":"0.3.0","name":"example.com/app"}`
1818

1919
gw := gzip.NewWriter(tf)
2020
tw := tar.NewWriter(gw)

examples/container.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"acVersion": "0.2.0",
2+
"acVersion": "0.3.0",
33
"acKind": "ContainerRuntimeManifest",
44
"uuid": "6733C088-A507-4694-AABF-EDBE4FC5266F",
55
"apps": [

examples/image.json

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

schema/image_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ func TestEmptyApp(t *testing.T) {
66
imj := `
77
{
88
"acKind": "ImageManifest",
9-
"acVersion": "0.2.0",
9+
"acVersion": "0.3.0",
1010
"name": "example.com/test"
1111
}
1212
`

schema/version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const (
88
// version represents the canonical version of the appc spec and tooling.
99
// For now, the schema and tooling is coupled with the spec itself, so
1010
// this must be kept in sync with the VERSION file in the root of the repo.
11-
version string = "0.2.0+git"
11+
version string = "0.3.0+git"
1212
)
1313

1414
var (

0 commit comments

Comments
 (0)