mirror of
https://github.com/clearlinux/rkt.git
synced 2026-08-18 21:16:13 +00:00
version: bump to v0.5.1
This commit is contained in:
@@ -12,8 +12,8 @@ To validate that `rkt` successfully implements the ACE part of the spec, use the
|
||||
|
||||
```
|
||||
$ sudo rkt --insecure-skip-verify run --volume database,kind=host,source=/tmp
|
||||
https://github.com/appc/spec/releases/download/v0.4.1/ace-validator-main.aci
|
||||
https://github.com/appc/spec/releases/download/v0.4.1/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/
|
||||
|
||||
@@ -18,9 +18,9 @@ The CLI for Rocket is called `rkt`, and is currently supported on amd64 Linux. A
|
||||
To install the `rkt` binary, grab the latest release directly from GitHub:
|
||||
|
||||
```
|
||||
wget https://github.com/coreos/rocket/releases/download/v0.4.2/rocket-v0.4.2.tar.gz
|
||||
tar xzvf rocket-v0.4.2.tar.gz
|
||||
cd rocket-v0.4.2
|
||||
wget https://github.com/coreos/rocket/releases/download/v0.5.1/rocket-v0.5.1.tar.gz
|
||||
tar xzvf rocket-v0.5.1.tar.gz
|
||||
cd rocket-v0.5.1
|
||||
./rkt help
|
||||
```
|
||||
|
||||
|
||||
+2
-2
@@ -155,7 +155,7 @@ func TestGetImageManifest(t *testing.T) {
|
||||
|
||||
imj := `{
|
||||
"acKind": "ImageManifest",
|
||||
"acVersion": "0.4.0",
|
||||
"acVersion": "0.5.1",
|
||||
"name": "example.com/test01"
|
||||
}`
|
||||
|
||||
@@ -347,7 +347,7 @@ func TestTreeStore(t *testing.T) {
|
||||
imj := `
|
||||
{
|
||||
"acKind": "ImageManifest",
|
||||
"acVersion": "0.4.1",
|
||||
"acVersion": "0.5.1",
|
||||
"name": "example.com/test01"
|
||||
}
|
||||
`
|
||||
|
||||
+1
-1
@@ -13,7 +13,7 @@ func treeStoreDSWriteACI(dir string, ds *Store) (string, error) {
|
||||
imj := `
|
||||
{
|
||||
"acKind": "ImageManifest",
|
||||
"acVersion": "0.4.1",
|
||||
"acVersion": "0.5.1",
|
||||
"name": "example.com/test01"
|
||||
}
|
||||
`
|
||||
|
||||
+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.4.1","name":"%s"}`, name)
|
||||
manifest := fmt.Sprintf(`{"acKind":"ImageManifest","acVersion":"0.5.1","name":"%s"}`, name)
|
||||
return NewACI(dir, manifest, nil)
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -124,7 +124,7 @@ func TestDownloading(t *testing.T) {
|
||||
|
||||
imj := `{
|
||||
"acKind": "ImageManifest",
|
||||
"acVersion": "0.4.0",
|
||||
"acVersion": "0.5.1",
|
||||
"name": "example.com/test01"
|
||||
}`
|
||||
|
||||
|
||||
+1
-1
@@ -14,4 +14,4 @@
|
||||
|
||||
package version
|
||||
|
||||
const Version = "0.4.2+git"
|
||||
const Version = "0.5.1"
|
||||
|
||||
Reference in New Issue
Block a user