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

Commit

Permalink
version: bump to v0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jonboulle committed Mar 26, 2015
1 parent 2740753 commit 9a448f7
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 @@ -61,7 +61,7 @@ $ find /tmp/my-app/
$ cat /tmp/my-app/manifest
{
"acKind": "ImageManifest",
"acVersion": "0.5.0",
"acVersion": "0.5.1",
"name": "my-app",
"labels": [
{"name": "os", "value": "linux"},
Expand Down Expand Up @@ -93,7 +93,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.5.0",
"acVersion": "0.5.1",
"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 @@ -565,7 +565,7 @@ JSON Schema for the Image Manifest (app image manifest, ACI manifest), conformin
```
{
"acKind": "ImageManifest",
"acVersion": "0.5.0",
"acVersion": "0.5.1",
"name": "example.com/reduce-worker",
"labels": [
{
Expand Down Expand Up @@ -744,7 +744,7 @@ JSON Schema for the Pod Manifest, conforming to [RFC4627](https://tools.ietf.org

```
{
"acVersion": "0.5.0",
"acVersion": "0.5.1",
"acKind": "PodManifest",
"apps": [
{
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0+git
0.5.1
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.5.0",
"acVersion": "0.5.1",
"acKind": "ImageManifest",
"name": "coreos.com/ace-validator-main",
"labels": [
{ "name": "version", "value": "0.5.0" },
{ "name": "version", "value": "0.5.1" },
{ "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.5.0",
"acVersion": "0.5.1",
"acKind": "ImageManifest",
"name": "coreos.com/ace-validator-sidekick",
"labels": [
{ "name": "version", "value": "0.5.0" },
{ "name": "version", "value": "0.5.1" },
{ "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(usedotslash bool) (*os.File, error) {
return nil, err
}

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

gw := gzip.NewWriter(tf)
tw := tar.NewWriter(gw)
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.5.0",
"acVersion": "0.5.1",
"name": "example.com/reduce-worker",
"labels": [
{
Expand Down
2 changes: 1 addition & 1 deletion examples/pod_runtime.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"acVersion": "0.5.0",
"acVersion": "0.5.1",
"acKind": "PodManifest",
"apps": [
{
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.5.0",
"acVersion": "0.5.1",
"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.5.0+git"
version string = "0.5.1"
)

var (
Expand Down

0 comments on commit 9a448f7

Please sign in to comment.