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

Commit f16eb5f

Browse files
committed
Merge pull request #35 from jonboulle/ver
*: set version to v0.1.1
2 parents c169559 + eccaa0f commit f16eb5f

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ $ find /tmp/my-app/
2727
$ cat /tmp/my-app/manifest
2828
{
2929
"acKind": "ImageManifest",
30-
"acVersion": "1.0.0",
30+
"acVersion": "0.1.1",
3131
"name": "my-app",
3232
"labels": [
3333
{"name": "os", "val": "linux"},
@@ -59,7 +59,7 @@ and verify that the manifest was embedded appropriately
5959
tar xf /tmp/my-app.aci manifest -O | python -m json.tool
6060
{
6161
"acKind": "ImageManifest",
62-
"acVersion": "1.0.0",
62+
"acVersion": "0.1.1",
6363
"annotations": null,
6464
"app": {
6565
"environment": {},

SPEC.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# App Container Specification
1+
# App Container Specification v0.1.1
22

33
The "App Container" defines an image format, image discovery mechanism and execution environment that can exist in several independent implementations. The core goals include:
44

@@ -362,7 +362,7 @@ JSON Schema for the Image Manifest
362362
```
363363
{
364364
"acKind": "ImageManifest",
365-
"acVersion": "0.1.0",
365+
"acVersion": "0.1.1",
366366
"name": "example.com/reduce-worker",
367367
"labels": [
368368
{
@@ -520,7 +520,7 @@ JSON Schema for the Container Runtime Manifest
520520
```
521521
{
522522
523-
"acVersion": "0.1.0",
523+
"acVersion": "0.1.1",
524524
"acKind": "ContainerRuntimeManifest",
525525
"uuid": "6733C088-A507-4694-AABF-EDBE4FC5266F",
526526
"apps": [

ace/image_manifest_main.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"acVersion": "1.0.0",
2+
"acVersion": "0.1.1",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-main",
55
"labels": [
6-
{ "name": "version", "val": "1.0.0" },
6+
{ "name": "version", "val": "0.1.1" },
77
{ "name": "os", "val": "linux" },
88
{ "name": "arch", "val": "amd64" }
99
],

ace/image_manifest_sidekick.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
2-
"acVersion": "1.0.0",
2+
"acVersion": "0.1.1",
33
"acKind": "ImageManifest",
44
"name": "coreos.com/ace-validator-sidekick",
55
"labels": [
6-
{ "name": "version", "val": "1.0.0" },
6+
{ "name": "version", "val": "0.1.1" },
77
{ "name": "os", "val": "linux" },
88
{ "name": "arch", "val": "amd64" }
99
],

examples/container.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"acVersion": "1.0.0",
2+
"acVersion": "0.1.1",
33
"acKind": "ContainerRuntimeManifest",
44
"uuid": "6733C088-A507-4694-AABF-EDBE4FC5266F",
55
"apps": [
66
{
7-
"app": "example.com/reduce-worker-1.0.0",
7+
"app": "example.com/reduce-worker",
88
"imageID": "sha256-908540d22dae9d8e6e3c6b13e21ddd12817406fd5c948eae4a744a6ccf94f96d"
99
},
1010
{
11-
"app": "example.com/worker-backup-1.0.0",
11+
"app": "example.com/worker-backup",
1212
"imageID": "sha256-893e424371071a51a45ebf490e852dfb1354b633f0817075d3bae80a6bdbafb1",
1313
"isolators": [
1414
{
@@ -21,7 +21,7 @@
2121
}
2222
},
2323
{
24-
"app": "example.com/reduce-worker-register-1.0.0",
24+
"app": "example.com/reduce-worker-register",
2525
"imageID": "sha256-f11cc60e67aeec90031cd17582327ee7e918d1c18d6b82eba8997df7410ead8d"
2626
}
2727
],

examples/image.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"acKind": "ImageManifest",
3-
"acVersion": "0.1.0",
3+
"acVersion": "0.1.1",
44
"name": "example.com/reduce-worker",
55
"labels": [
66
{

0 commit comments

Comments
 (0)