Merge pull request #613 from mrunalp/bump_1_alpha_0

version: Bump up version to 1.0.0-alpha.0
This commit is contained in:
Antonio Murdaca 2017-06-21 00:36:24 +02:00 committed by GitHub
commit 5dcbdc05e5
3 changed files with 3 additions and 3 deletions

View file

@ -4,7 +4,7 @@
[![Build Status](https://img.shields.io/travis/kubernetes-incubator/cri-o.svg?maxAge=2592000&style=flat-square)](https://travis-ci.org/kubernetes-incubator/cri-o) [![Build Status](https://img.shields.io/travis/kubernetes-incubator/cri-o.svg?maxAge=2592000&style=flat-square)](https://travis-ci.org/kubernetes-incubator/cri-o)
[![Go Report Card](https://goreportcard.com/badge/github.com/kubernetes-incubator/cri-o?style=flat-square)](https://goreportcard.com/report/github.com/kubernetes-incubator/cri-o) [![Go Report Card](https://goreportcard.com/badge/github.com/kubernetes-incubator/cri-o?style=flat-square)](https://goreportcard.com/report/github.com/kubernetes-incubator/cri-o)
### Status: pre-alpha ### Status: alpha
## What is the scope of this project? ## What is the scope of this project?

View file

@ -128,7 +128,7 @@ func main() {
app := cli.NewApp() app := cli.NewApp()
app.Name = "crio" app.Name = "crio"
app.Usage = "crio server" app.Usage = "crio server"
app.Version = "0.3" app.Version = "1.0.0-alpha.0"
app.Metadata = map[string]interface{}{ app.Metadata = map[string]interface{}{
"config": server.DefaultConfig(), "config": server.DefaultConfig(),
} }

View file

@ -67,7 +67,7 @@ func main() {
app := cli.NewApp() app := cli.NewApp()
app.Name = "crioctl" app.Name = "crioctl"
app.Usage = "client for crio" app.Usage = "client for crio"
app.Version = "0.3" app.Version = "1.0.0-alpha.0"
app.Commands = []cli.Command{ app.Commands = []cli.Command{
podSandboxCommand, podSandboxCommand,