From b82df188c62352e74588517d12a991e2ea842faf Mon Sep 17 00:00:00 2001 From: Mrunal Patel Date: Tue, 20 Jun 2017 08:58:34 -0700 Subject: [PATCH] version: Bump up version to 1.0.0-alpha.0 Signed-off-by: Mrunal Patel --- README.md | 2 +- cmd/crio/main.go | 2 +- cmd/crioctl/main.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 10575391..cfd7e4d8 100644 --- a/README.md +++ b/README.md @@ -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) [![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? diff --git a/cmd/crio/main.go b/cmd/crio/main.go index 0107d2f5..b6377df0 100644 --- a/cmd/crio/main.go +++ b/cmd/crio/main.go @@ -128,7 +128,7 @@ func main() { app := cli.NewApp() app.Name = "crio" app.Usage = "crio server" - app.Version = "0.3" + app.Version = "1.0.0-alpha.0" app.Metadata = map[string]interface{}{ "config": server.DefaultConfig(), } diff --git a/cmd/crioctl/main.go b/cmd/crioctl/main.go index 999b7617..e8d30bc7 100644 --- a/cmd/crioctl/main.go +++ b/cmd/crioctl/main.go @@ -67,7 +67,7 @@ func main() { app := cli.NewApp() app.Name = "crioctl" app.Usage = "client for crio" - app.Version = "0.3" + app.Version = "1.0.0-alpha.0" app.Commands = []cli.Command{ podSandboxCommand,