Skip to content

Commit

Permalink
Merge pull request #483 from Mashimiao/release-v0.2.0
Browse files Browse the repository at this point in the history
release: v0.2.0
  • Loading branch information
Ma Shimiao authored Sep 26, 2017
2 parents 0a52ac0 + f172006 commit 9d9f709
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions cmd/oci-runtime-tool/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down
2 changes: 1 addition & 1 deletion cmd/runtimetest/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down

0 comments on commit 9d9f709

Please sign in to comment.