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

Commit

Permalink
version: bump to v0.5.3
Browse files Browse the repository at this point in the history
  • Loading branch information
jonboulle committed Apr 1, 2015
1 parent 4b9baeb commit a8afce7
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions Documentation/app-container.md
Expand Up @@ -14,8 +14,8 @@ To validate that `rkt` successfully implements the ACE part of the spec, use the
$ sudo rkt --insecure-skip-verify run \
--private-net --spawn-metadata-svc \
--volume database,kind=host,source=/tmp \
https://github.com/appc/spec/releases/download/v0.5.2/ace-validator-main.aci \
https://github.com/appc/spec/releases/download/v0.5.2/ace-validator-sidekick.aci
https://github.com/appc/spec/releases/download/v0.5.1/ace-validator-main.aci \
https://github.com/appc/spec/releases/download/v0.5.1/ace-validator-sidekick.aci
```

[appc-repo]: https://github.com/appc/spec/
Expand Down
6 changes: 3 additions & 3 deletions README.md
Expand Up @@ -18,9 +18,9 @@ The CLI for rkt is called `rkt`, and is currently supported on amd64 Linux. A mo
To install the `rkt` binary, grab the latest release directly from GitHub:

```
wget https://github.com/coreos/rkt/releases/download/v0.5.2/rkt-v0.5.2.tar.gz
tar xzvf rkt-v0.5.2.tar.gz
cd rkt-v0.5.2
wget https://github.com/coreos/rkt/releases/download/v0.5.3/rkt-v0.5.3.tar.gz
tar xzvf rkt-v0.5.3.tar.gz
cd rkt-v0.5.3
./rkt help
```

Expand Down
4 changes: 2 additions & 2 deletions cas/cas_test.go
Expand Up @@ -155,7 +155,7 @@ func TestGetImageManifest(t *testing.T) {

imj := `{
"acKind": "ImageManifest",
"acVersion": "0.5.2",
"acVersion": "0.5.3",
"name": "example.com/test01"
}`

Expand Down Expand Up @@ -347,7 +347,7 @@ func TestTreeStore(t *testing.T) {
imj := `
{
"acKind": "ImageManifest",
"acVersion": "0.5.2",
"acVersion": "0.5.3",
"name": "example.com/test01"
}
`
Expand Down
2 changes: 1 addition & 1 deletion cas/tree_test.go
Expand Up @@ -13,7 +13,7 @@ func treeStoreDSWriteACI(dir string, ds *Store) (string, error) {
imj := `
{
"acKind": "ImageManifest",
"acVersion": "0.5.2",
"acVersion": "0.5.3",
"name": "example.com/test01"
}
`
Expand Down
2 changes: 1 addition & 1 deletion pkg/aci/aci.go
Expand Up @@ -106,7 +106,7 @@ func (aw *imageArchiveWriter) Close() error {
// NewBasicACI creates a new ACI in the given directory with the given name.
// Used for testing.
func NewBasicACI(dir string, name string) (*os.File, error) {
manifest := fmt.Sprintf(`{"acKind":"ImageManifest","acVersion":"0.5.2","name":"%s"}`, name)
manifest := fmt.Sprintf(`{"acKind":"ImageManifest","acVersion":"0.5.3","name":"%s"}`, name)
return NewACI(dir, manifest, nil)
}

Expand Down
2 changes: 1 addition & 1 deletion rkt/fetch_test.go
Expand Up @@ -124,7 +124,7 @@ func TestDownloading(t *testing.T) {

imj := `{
"acKind": "ImageManifest",
"acVersion": "0.5.2",
"acVersion": "0.5.3",
"name": "example.com/test01"
}`

Expand Down
2 changes: 1 addition & 1 deletion stage1/rootfs/aggregate/aci-manifest
@@ -1,6 +1,6 @@
{
"acKind": "ImageManifest",
"acVersion": "0.5.2",
"acVersion": "0.5.3",
"name": "coreos.com/rkt/stage1",
"labels": [
{
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Expand Up @@ -14,4 +14,4 @@

package version

const Version = "0.5.2+git"
const Version = "0.5.3"

0 comments on commit a8afce7

Please sign in to comment.