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

Commit 1d3a46f

Browse files
committed
*: bump version to 0.2.0
1 parent 93e94a3 commit 1d3a46f

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.1.1",
29+
"acVersion": "0.2.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.1.1",
61+
"acVersion": "0.2.0",
6262
"annotations": null,
6363
"app": {
6464
"environment": {},

SPEC.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ JSON Schema for the Image Manifest (app image manifest, ACI manifest)
382382
```
383383
{
384384
"acKind": "ImageManifest",
385-
"acVersion": "0.1.1",
385+
"acVersion": "0.2.0",
386386
"name": "example.com/reduce-worker",
387387
"labels": [
388388
{
@@ -556,7 +556,7 @@ JSON Schema for the Container Runtime Manifest (container manifest)
556556
```
557557
{
558558
559-
"acVersion": "0.1.1",
559+
"acVersion": "0.2.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.1.1+git
1+
0.2.0

ace/image_manifest_main.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"acVersion": "0.1.1",
2+
"acVersion": "0.2.0",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-main",
55
"labels": [
6-
{ "name": "version", "value": "0.1.1" },
6+
{ "name": "version", "value": "0.2.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.1.1",
2+
"acVersion": "0.2.0",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-sidekick",
55
"labels": [
6-
{ "name": "version", "value": "0.1.1" },
6+
{ "name": "version", "value": "0.2.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.1.1","name":"example.com/app"}`
17+
manifestBody := `{"acKind":"ImageManifest","acVersion":"0.2.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.1.1",
2+
"acVersion": "0.2.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.1.1",
3+
"acVersion": "0.2.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.1.1",
9+
"acVersion": "0.2.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.1.1+git"
11+
version string = "0.2.0"
1212
)
1313

1414
var (

0 commit comments

Comments
 (0)