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

Commit bf255ef

Browse files
author
Brandon Philips
committed
version: bump to v0.4.1
1 parent 2465079 commit bf255ef

10 files changed

+14
-14
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ $ find /tmp/my-app/
6060
$ cat /tmp/my-app/manifest
6161
{
6262
"acKind": "ImageManifest",
63-
"acVersion": "0.4.0",
63+
"acVersion": "0.4.1",
6464
"name": "my-app",
6565
"labels": [
6666
{"name": "os", "value": "linux"},
@@ -92,7 +92,7 @@ and verify that the manifest was embedded appropriately
9292
tar xf /tmp/my-app.aci manifest -O | python -m json.tool
9393
{
9494
"acKind": "ImageManifest",
95-
"acVersion": "0.4.0",
95+
"acVersion": "0.4.1",
9696
"annotations": null,
9797
"app": {
9898
"environment": [],

SPEC.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -540,7 +540,7 @@ JSON Schema for the Image Manifest (app image manifest, ACI manifest), conformin
540540
```
541541
{
542542
"acKind": "ImageManifest",
543-
"acVersion": "0.4.0",
543+
"acVersion": "0.4.1",
544544
"name": "example.com/reduce-worker",
545545
"labels": [
546546
{
@@ -720,7 +720,7 @@ JSON Schema for the Container Runtime Manifest (container manifest), conforming
720720
```
721721
{
722722
723-
"acVersion": "0.4.0",
723+
"acVersion": "0.4.1",
724724
"acKind": "ContainerRuntimeManifest",
725725
"uuid": "6733C088-A507-4694-AABF-EDBE4FC5266F",
726726
"apps": [

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.0+git
1+
0.4.1

ace/image_manifest_main.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"acVersion": "0.4.0",
2+
"acVersion": "0.4.1",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-main",
55
"labels": [
6-
{ "name": "version", "value": "0.4.0" },
6+
{ "name": "version", "value": "0.4.1" },
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.4.0",
2+
"acVersion": "0.4.1",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-sidekick",
55
"labels": [
6-
{ "name": "version", "value": "0.4.0" },
6+
{ "name": "version", "value": "0.4.1" },
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(usedotslash bool) (*os.File, error) {
1414
return nil, err
1515
}
1616

17-
manifestBody := `{"acKind":"ImageManifest","acVersion":"0.4.0","name":"example.com/app"}`
17+
manifestBody := `{"acKind":"ImageManifest","acVersion":"0.4.1","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.4.0",
2+
"acVersion": "0.4.1",
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.4.0",
3+
"acVersion": "0.4.1",
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.4.0",
9+
"acVersion": "0.4.1",
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.4.0+git"
11+
version string = "0.4.1"
1212
)
1313

1414
var (

0 commit comments

Comments
 (0)