Skip to content

Commit f172006

Browse files
author
Ma Shimiao
committed
release: v0.2.0
Signed-off-by: Ma Shimiao <[email protected]>
1 parent 0a52ac0 commit f172006

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: cmd/oci-runtime-tool/main.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ func main() {
1616
app := cli.NewApp()
1717
app.Name = "oci-runtime-tool"
1818
if gitCommit != "" {
19-
app.Version = fmt.Sprintf("0.1.0, commit: %s", gitCommit)
19+
app.Version = fmt.Sprintf("0.2.0, commit: %s", gitCommit)
2020
} else {
21-
app.Version = "0.1.0"
21+
app.Version = "0.2.0"
2222
}
2323
app.Usage = "OCI (Open Container Initiative) runtime tools"
2424
app.Flags = []cli.Flag{

Diff for: cmd/runtimetest/main.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ func run(context *cli.Context) error {
791791
func main() {
792792
app := cli.NewApp()
793793
app.Name = "runtimetest"
794-
app.Version = "0.1.0"
794+
app.Version = "0.2.0"
795795
app.Usage = "Compare the environment with an OCI configuration"
796796
app.Description = "runtimetest compares its current environment with an OCI runtime configuration read from config.json in its current working directory. The tests are fairly generic and cover most configurations used by the runtime validation suite, but there are corner cases where a container launched by a valid runtime would not satisfy runtimetest."
797797
app.Flags = []cli.Flag{

0 commit comments

Comments
 (0)