From bf255efb12f2455c0f6eb81932458abc0ad80413 Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Mon, 9 Mar 2015 05:14:12 -0400 Subject: [PATCH] version: bump to v0.4.1 --- README.md | 4 ++-- SPEC.md | 4 ++-- VERSION | 2 +- ace/image_manifest_main.json | 4 ++-- ace/image_manifest_sidekick.json | 4 ++-- aci/file_test.go | 2 +- examples/container.json | 2 +- examples/image.json | 2 +- schema/image_test.go | 2 +- schema/version.go | 2 +- 10 files changed, 14 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index 823025c1..a16b7a5a 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ $ find /tmp/my-app/ $ cat /tmp/my-app/manifest { "acKind": "ImageManifest", - "acVersion": "0.4.0", + "acVersion": "0.4.1", "name": "my-app", "labels": [ {"name": "os", "value": "linux"}, @@ -92,7 +92,7 @@ and verify that the manifest was embedded appropriately tar xf /tmp/my-app.aci manifest -O | python -m json.tool { "acKind": "ImageManifest", - "acVersion": "0.4.0", + "acVersion": "0.4.1", "annotations": null, "app": { "environment": [], diff --git a/SPEC.md b/SPEC.md index f42fcff1..30440302 100644 --- a/SPEC.md +++ b/SPEC.md @@ -540,7 +540,7 @@ JSON Schema for the Image Manifest (app image manifest, ACI manifest), conformin ``` { "acKind": "ImageManifest", - "acVersion": "0.4.0", + "acVersion": "0.4.1", "name": "example.com/reduce-worker", "labels": [ { @@ -720,7 +720,7 @@ JSON Schema for the Container Runtime Manifest (container manifest), conforming ``` { - "acVersion": "0.4.0", + "acVersion": "0.4.1", "acKind": "ContainerRuntimeManifest", "uuid": "6733C088-A507-4694-AABF-EDBE4FC5266F", "apps": [ diff --git a/VERSION b/VERSION index 51107080..267577d4 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.4.0+git +0.4.1 diff --git a/ace/image_manifest_main.json b/ace/image_manifest_main.json index 396b83fb..2357f0ac 100644 --- a/ace/image_manifest_main.json +++ b/ace/image_manifest_main.json @@ -1,9 +1,9 @@ { - "acVersion": "0.4.0", + "acVersion": "0.4.1", "acKind": "ImageManifest", "name": "coreos.com/ace-validator-main", "labels": [ - { "name": "version", "value": "0.4.0" }, + { "name": "version", "value": "0.4.1" }, { "name": "os", "value": "linux" }, { "name": "arch", "value": "amd64" } ], diff --git a/ace/image_manifest_sidekick.json b/ace/image_manifest_sidekick.json index 86d291f7..95ba544d 100644 --- a/ace/image_manifest_sidekick.json +++ b/ace/image_manifest_sidekick.json @@ -1,9 +1,9 @@ { - "acVersion": "0.4.0", + "acVersion": "0.4.1", "acKind": "ImageManifest", "name": "coreos.com/ace-validator-sidekick", "labels": [ - { "name": "version", "value": "0.4.0" }, + { "name": "version", "value": "0.4.1" }, { "name": "os", "value": "linux" }, { "name": "arch", "value": "amd64" } ], diff --git a/aci/file_test.go b/aci/file_test.go index 8ec62ad4..7e8debda 100644 --- a/aci/file_test.go +++ b/aci/file_test.go @@ -14,7 +14,7 @@ func newTestACI(usedotslash bool) (*os.File, error) { return nil, err } - manifestBody := `{"acKind":"ImageManifest","acVersion":"0.4.0","name":"example.com/app"}` + manifestBody := `{"acKind":"ImageManifest","acVersion":"0.4.1","name":"example.com/app"}` gw := gzip.NewWriter(tf) tw := tar.NewWriter(gw) diff --git a/examples/container.json b/examples/container.json index f0be5369..0aa2ccdc 100644 --- a/examples/container.json +++ b/examples/container.json @@ -1,5 +1,5 @@ { - "acVersion": "0.4.0", + "acVersion": "0.4.1", "acKind": "ContainerRuntimeManifest", "uuid": "6733C088-A507-4694-AABF-EDBE4FC5266F", "apps": [ diff --git a/examples/image.json b/examples/image.json index 306c1eab..c2c3bc13 100644 --- a/examples/image.json +++ b/examples/image.json @@ -1,6 +1,6 @@ { "acKind": "ImageManifest", - "acVersion": "0.4.0", + "acVersion": "0.4.1", "name": "example.com/reduce-worker", "labels": [ { diff --git a/schema/image_test.go b/schema/image_test.go index 079af4a2..9dfc99df 100644 --- a/schema/image_test.go +++ b/schema/image_test.go @@ -6,7 +6,7 @@ func TestEmptyApp(t *testing.T) { imj := ` { "acKind": "ImageManifest", - "acVersion": "0.4.0", + "acVersion": "0.4.1", "name": "example.com/test" } ` diff --git a/schema/version.go b/schema/version.go index 312ebedf..fa5eaadd 100644 --- a/schema/version.go +++ b/schema/version.go @@ -8,7 +8,7 @@ const ( // version represents the canonical version of the appc spec and tooling. // For now, the schema and tooling is coupled with the spec itself, so // this must be kept in sync with the VERSION file in the root of the repo. - version string = "0.4.0+git" + version string = "0.4.1" ) var (