diff --git a/cmd/oci-runtime-tool/main.go b/cmd/oci-runtime-tool/main.go index bc7ac28f0..2268a0ac5 100644 --- a/cmd/oci-runtime-tool/main.go +++ b/cmd/oci-runtime-tool/main.go @@ -16,9 +16,9 @@ func main() { app := cli.NewApp() app.Name = "oci-runtime-tool" if gitCommit != "" { - app.Version = fmt.Sprintf("0.1.0, commit: %s", gitCommit) + app.Version = fmt.Sprintf("0.2.0, commit: %s", gitCommit) } else { - app.Version = "0.1.0" + app.Version = "0.2.0" } app.Usage = "OCI (Open Container Initiative) runtime tools" app.Flags = []cli.Flag{ diff --git a/cmd/runtimetest/main.go b/cmd/runtimetest/main.go index dd9870ff5..39484f27f 100644 --- a/cmd/runtimetest/main.go +++ b/cmd/runtimetest/main.go @@ -791,7 +791,7 @@ func run(context *cli.Context) error { func main() { app := cli.NewApp() app.Name = "runtimetest" - app.Version = "0.1.0" + app.Version = "0.2.0" app.Usage = "Compare the environment with an OCI configuration" 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." app.Flags = []cli.Flag{