mirror of
https://github.com/clearlinux/rkt.git
synced 2026-06-16 02:05:48 +00:00
version: bump to v0.5.4
This commit is contained in:
@@ -16,9 +16,9 @@ vagrant up --provider virtualbox
|
||||
vagrant ssh
|
||||
sudo su
|
||||
|
||||
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
|
||||
wget https://github.com/coreos/rkt/releases/download/v0.5.4/rkt-v0.5.4.tar.gz
|
||||
tar xzvf rkt-v0.5.4.tar.gz
|
||||
cd rkt-v0.5.4
|
||||
./rkt help
|
||||
```
|
||||
|
||||
|
||||
@@ -34,9 +34,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.3/rkt-v0.5.3.tar.gz
|
||||
tar xzvf rkt-v0.5.3.tar.gz
|
||||
cd rkt-v0.5.3
|
||||
wget https://github.com/coreos/rkt/releases/download/v0.5.4/rkt-v0.5.4.tar.gz
|
||||
tar xzvf rkt-v0.5.4.tar.gz
|
||||
cd rkt-v0.5.4
|
||||
./rkt help
|
||||
```
|
||||
|
||||
|
||||
+1
-1
@@ -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.3","name":"%s"}`, name)
|
||||
manifest := fmt.Sprintf(`{"acKind":"ImageManifest","acVersion":"0.5.4","name":"%s"}`, name)
|
||||
return NewACI(dir, manifest, nil)
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -225,7 +225,7 @@ func TestDownloading(t *testing.T) {
|
||||
|
||||
imj := `{
|
||||
"acKind": "ImageManifest",
|
||||
"acVersion": "0.5.3",
|
||||
"acVersion": "0.5.4",
|
||||
"name": "example.com/test01"
|
||||
}`
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"acKind": "ImageManifest",
|
||||
"acVersion": "0.5.3",
|
||||
"acVersion": "0.5.4",
|
||||
"name": "coreos.com/rkt/stage1",
|
||||
"labels": [
|
||||
{
|
||||
|
||||
+2
-2
@@ -155,7 +155,7 @@ func TestGetImageManifest(t *testing.T) {
|
||||
|
||||
imj := `{
|
||||
"acKind": "ImageManifest",
|
||||
"acVersion": "0.5.3",
|
||||
"acVersion": "0.5.4",
|
||||
"name": "example.com/test01"
|
||||
}`
|
||||
|
||||
@@ -347,7 +347,7 @@ func TestTreeStore(t *testing.T) {
|
||||
imj := `
|
||||
{
|
||||
"acKind": "ImageManifest",
|
||||
"acVersion": "0.5.3",
|
||||
"acVersion": "0.5.4",
|
||||
"name": "example.com/test01"
|
||||
}
|
||||
`
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ func treeStoreWriteACI(dir string, s *Store) (string, error) {
|
||||
imj := `
|
||||
{
|
||||
"acKind": "ImageManifest",
|
||||
"acVersion": "0.5.3",
|
||||
"acVersion": "0.5.4",
|
||||
"name": "example.com/test01"
|
||||
}
|
||||
`
|
||||
|
||||
+1
-1
@@ -14,4 +14,4 @@
|
||||
|
||||
package version
|
||||
|
||||
const Version = "0.5.3+git"
|
||||
const Version = "0.5.4"
|
||||
|
||||
Reference in New Issue
Block a user