Skip to content

Commit

Permalink
release: v0.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Ma Shimiao <[email protected]>
  • Loading branch information
Ma Shimiao committed Sep 6, 2017
1 parent 06bd267 commit 7dfd605
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.0.1, commit: %s", gitCommit)
app.Version = fmt.Sprintf("0.1.0, commit: %s", gitCommit)
} else {
app.Version = "0.0.1"
app.Version = "0.1.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.0.1"
app.Version = "0.1.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 7dfd605

Please sign in to comment.