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

Commit

Permalink
Merge pull request #35 from jonboulle/ver
Browse files Browse the repository at this point in the history
*: set version to v0.1.1
  • Loading branch information
jonboulle committed Dec 11, 2014
2 parents c169559 + eccaa0f commit f16eb5f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 14 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ $ find /tmp/my-app/
$ cat /tmp/my-app/manifest
{
"acKind": "ImageManifest",
"acVersion": "1.0.0",
"acVersion": "0.1.1",
"name": "my-app",
"labels": [
{"name": "os", "val": "linux"},
Expand Down Expand Up @@ -59,7 +59,7 @@ and verify that the manifest was embedded appropriately
tar xf /tmp/my-app.aci manifest -O | python -m json.tool
{
"acKind": "ImageManifest",
"acVersion": "1.0.0",
"acVersion": "0.1.1",
"annotations": null,
"app": {
"environment": {},
Expand Down
6 changes: 3 additions & 3 deletions SPEC.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# App Container Specification
# App Container Specification v0.1.1

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

Expand Down Expand Up @@ -362,7 +362,7 @@ JSON Schema for the Image Manifest
```
{
"acKind": "ImageManifest",
"acVersion": "0.1.0",
"acVersion": "0.1.1",
"name": "example.com/reduce-worker",
"labels": [
{
Expand Down Expand Up @@ -520,7 +520,7 @@ JSON Schema for the Container Runtime Manifest
```
{
"acVersion": "0.1.0",
"acVersion": "0.1.1",
"acKind": "ContainerRuntimeManifest",
"uuid": "6733C088-A507-4694-AABF-EDBE4FC5266F",
"apps": [
Expand Down
4 changes: 2 additions & 2 deletions ace/image_manifest_main.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"acVersion": "1.0.0",
"acVersion": "0.1.1",
"acKind": "ImageManifest",
"name": "coreos.com/ace-validator-main",
"labels": [
{ "name": "version", "val": "1.0.0" },
{ "name": "version", "val": "0.1.1" },
{ "name": "os", "val": "linux" },
{ "name": "arch", "val": "amd64" }
],
Expand Down
4 changes: 2 additions & 2 deletions ace/image_manifest_sidekick.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"acVersion": "1.0.0",
"acVersion": "0.1.1",
"acKind": "ImageManifest",
"name": "coreos.com/ace-validator-sidekick",
"labels": [
{ "name": "version", "val": "1.0.0" },
{ "name": "version", "val": "0.1.1" },
{ "name": "os", "val": "linux" },
{ "name": "arch", "val": "amd64" }
],
Expand Down
8 changes: 4 additions & 4 deletions examples/container.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"acVersion": "1.0.0",
"acVersion": "0.1.1",
"acKind": "ContainerRuntimeManifest",
"uuid": "6733C088-A507-4694-AABF-EDBE4FC5266F",
"apps": [
{
"app": "example.com/reduce-worker-1.0.0",
"app": "example.com/reduce-worker",
"imageID": "sha256-908540d22dae9d8e6e3c6b13e21ddd12817406fd5c948eae4a744a6ccf94f96d"
},
{
"app": "example.com/worker-backup-1.0.0",
"app": "example.com/worker-backup",
"imageID": "sha256-893e424371071a51a45ebf490e852dfb1354b633f0817075d3bae80a6bdbafb1",
"isolators": [
{
Expand All @@ -21,7 +21,7 @@
}
},
{
"app": "example.com/reduce-worker-register-1.0.0",
"app": "example.com/reduce-worker-register",
"imageID": "sha256-f11cc60e67aeec90031cd17582327ee7e918d1c18d6b82eba8997df7410ead8d"
}
],
Expand Down
2 changes: 1 addition & 1 deletion examples/image.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"acKind": "ImageManifest",
"acVersion": "0.1.0",
"acVersion": "0.1.1",
"name": "example.com/reduce-worker",
"labels": [
{
Expand Down

0 comments on commit f16eb5f

Please sign in to comment.