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.6
Browse files Browse the repository at this point in the history
  • Loading branch information
alban committed May 28, 2015
1 parent e15efe0 commit a07bdc3
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Documentation/getting-started-ubuntu-trusty.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ vagrant up --provider virtualbox
vagrant ssh
sudo su
wget https://github.com/coreos/rkt/releases/download/v0.5.5/rkt-v0.5.5.tar.gz
tar xzvf rkt-v0.5.5.tar.gz
cd rkt-v0.5.5
wget https://github.com/coreos/rkt/releases/download/v0.5.6/rkt-v0.5.6.tar.gz
tar xzvf rkt-v0.5.6.tar.gz
cd rkt-v0.5.6
./rkt help
```

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ Check out the [roadmap](ROADMAP.md) for more details on the future of rkt.
To download the `rkt` binary, simply grab the latest release directly from GitHub:

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

Expand Down
2 changes: 1 addition & 1 deletion pkg/aci/aci.go
Original file line number Diff line number Diff line change
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.5","name":"%s"}`, name)
manifest := fmt.Sprintf(`{"acKind":"ImageManifest","acVersion":"0.5.2","name":"%s"}`, name)
return NewACI(dir, manifest, nil)
}

Expand Down
2 changes: 1 addition & 1 deletion rkt/fetch_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ func TestDownloading(t *testing.T) {

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

Expand Down
2 changes: 1 addition & 1 deletion stage1/rootfs/aggregate/aci-manifest
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"acKind": "ImageManifest",
"acVersion": "0.5.5",
"acVersion": "0.5.2",
"name": "coreos.com/rkt/stage1",
"labels": [
{
Expand Down
4 changes: 2 additions & 2 deletions store/store_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func TestGetImageManifest(t *testing.T) {

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

Expand Down Expand Up @@ -358,7 +358,7 @@ func TestTreeStore(t *testing.T) {
imj := `
{
"acKind": "ImageManifest",
"acVersion": "0.5.5",
"acVersion": "0.5.2",
"name": "example.com/test01"
}
`
Expand Down
2 changes: 1 addition & 1 deletion store/tree_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ func treeStoreWriteACI(dir string, s *Store) (string, error) {
imj := `
{
"acKind": "ImageManifest",
"acVersion": "0.5.5",
"acVersion": "0.5.2",
"name": "example.com/test01"
}
`
Expand Down
2 changes: 1 addition & 1 deletion version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

package version

const Version = "0.5.5+git"
const Version = "0.5.6"

0 comments on commit a07bdc3

Please sign in to comment.