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

Commit

Permalink
SPEC: bump to 0.3.0
Browse files Browse the repository at this point in the history
Lets cut another release.
  • Loading branch information
Brandon Philips committed Feb 5, 2015
1 parent 2fee340 commit b005875
Show file tree
Hide file tree
Showing 10 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 @@ -26,7 +26,7 @@ $ find /tmp/my-app/
$ cat /tmp/my-app/manifest
{
"acKind": "ImageManifest",
"acVersion": "0.2.0",
"acVersion": "0.3.0",
"name": "my-app",
"labels": [
{"name": "os", "value": "linux"},
Expand Down Expand Up @@ -58,7 +58,7 @@ and verify that the manifest was embedded appropriately
tar xf /tmp/my-app.aci manifest -O | python -m json.tool
{
"acKind": "ImageManifest",
"acVersion": "0.2.0",
"acVersion": "0.3.0",
"annotations": null,
"app": {
"environment": [],
Expand Down
4 changes: 2 additions & 2 deletions SPEC.md
Original file line number Diff line number Diff line change
Expand Up @@ -381,7 +381,7 @@ JSON Schema for the Image Manifest (app image manifest, ACI manifest), conformin
```
{
"acKind": "ImageManifest",
"acVersion": "0.2.0",
"acVersion": "0.3.0",
"name": "example.com/reduce-worker",
"labels": [
{
Expand Down Expand Up @@ -556,7 +556,7 @@ JSON Schema for the Container Runtime Manifest (container manifest), conforming
```
{
"acVersion": "0.2.0",
"acVersion": "0.3.0",
"acKind": "ContainerRuntimeManifest",
"uuid": "6733C088-A507-4694-AABF-EDBE4FC5266F",
"apps": [
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0+git
0.3.0+git
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": "0.2.0",
"acVersion": "0.3.0",
"acKind": "ImageManifest",
"name": "coreos.com/ace-validator-main",
"labels": [
{ "name": "version", "value": "0.2.0" },
{ "name": "version", "value": "0.3.0" },
{ "name": "os", "value": "linux" },
{ "name": "arch", "value": "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": "0.2.0",
"acVersion": "0.3.0",
"acKind": "ImageManifest",
"name": "coreos.com/ace-validator-sidekick",
"labels": [
{ "name": "version", "value": "0.2.0" },
{ "name": "version", "value": "0.3.0" },
{ "name": "os", "value": "linux" },
{ "name": "arch", "value": "amd64" }
],
Expand Down
2 changes: 1 addition & 1 deletion aci/file_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ func newTestACI() (*os.File, error) {
return nil, err
}

manifestBody := `{"acKind":"ImageManifest","acVersion":"0.2.0","name":"example.com/app"}`
manifestBody := `{"acKind":"ImageManifest","acVersion":"0.3.0","name":"example.com/app"}`

gw := gzip.NewWriter(tf)
tw := tar.NewWriter(gw)
Expand Down
2 changes: 1 addition & 1 deletion examples/container.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"acVersion": "0.2.0",
"acVersion": "0.3.0",
"acKind": "ContainerRuntimeManifest",
"uuid": "6733C088-A507-4694-AABF-EDBE4FC5266F",
"apps": [
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.2.0",
"acVersion": "0.3.0",
"name": "example.com/reduce-worker",
"labels": [
{
Expand Down
2 changes: 1 addition & 1 deletion schema/image_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ func TestEmptyApp(t *testing.T) {
imj := `
{
"acKind": "ImageManifest",
"acVersion": "0.2.0",
"acVersion": "0.3.0",
"name": "example.com/test"
}
`
Expand Down
2 changes: 1 addition & 1 deletion schema/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const (
// version represents the canonical version of the appc spec and tooling.
// For now, the schema and tooling is coupled with the spec itself, so
// this must be kept in sync with the VERSION file in the root of the repo.
version string = "0.2.0+git"
version string = "0.3.0+git"
)

var (
Expand Down

0 comments on commit b005875

Please sign in to comment.