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

Commit cffea39

Browse files
committed
version: bump to v0.5.0
1 parent e618d26 commit cffea39

10 files changed

+14
-14
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ $ find /tmp/my-app/
6161
$ cat /tmp/my-app/manifest
6262
{
6363
"acKind": "ImageManifest",
64-
"acVersion": "0.4.1",
64+
"acVersion": "0.5.0",
6565
"name": "my-app",
6666
"labels": [
6767
{"name": "os", "value": "linux"},
@@ -93,7 +93,7 @@ and verify that the manifest was embedded appropriately
9393
tar xf /tmp/my-app.aci manifest -O | python -m json.tool
9494
{
9595
"acKind": "ImageManifest",
96-
"acVersion": "0.4.1",
96+
"acVersion": "0.5.0",
9797
"annotations": null,
9898
"app": {
9999
"environment": [],

SPEC.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ JSON Schema for the Image Manifest (app image manifest, ACI manifest), conformin
565565
```
566566
{
567567
"acKind": "ImageManifest",
568-
"acVersion": "0.4.1",
568+
"acVersion": "0.5.0",
569569
"name": "example.com/reduce-worker",
570570
"labels": [
571571
{
@@ -744,7 +744,7 @@ JSON Schema for the Pod Manifest, conforming to [RFC4627](https://tools.ietf.org
744744

745745
```
746746
{
747-
"acVersion": "0.4.1",
747+
"acVersion": "0.5.0",
748748
"acKind": "PodManifest",
749749
"apps": [
750750
{

VERSION

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

ace/image_manifest_main.json

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

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

1919
gw := gzip.NewWriter(tf)
2020
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.4.1",
3+
"acVersion": "0.5.0",
44
"name": "example.com/reduce-worker",
55
"labels": [
66
{

examples/pod_runtime.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"acVersion": "0.4.1",
2+
"acVersion": "0.5.0",
33
"acKind": "PodManifest",
44
"apps": [
55
{

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.1",
9+
"acVersion": "0.5.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.4.1+git"
11+
version string = "0.5.0"
1212
)
1313

1414
var (

0 commit comments

Comments
 (0)