From 74ea9ea5cd4d53aae6dc7393c9b1bebbdd584c69 Mon Sep 17 00:00:00 2001 From: Gyu-Ho Lee Date: Fri, 6 May 2016 13:01:32 -0700 Subject: [PATCH] *: bump to 3.0.0-beta.0 --- etcdserver/api/v2http/capability.go | 1 + version/version.go | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/etcdserver/api/v2http/capability.go b/etcdserver/api/v2http/capability.go index f5d0714af85..66f6b168d28 100644 --- a/etcdserver/api/v2http/capability.go +++ b/etcdserver/api/v2http/capability.go @@ -38,6 +38,7 @@ var ( "2.1.0": {authCapability: true}, "2.2.0": {authCapability: true}, "2.3.0": {authCapability: true}, + "3.0.0": {authCapability: true}, } enableMapMu sync.Mutex diff --git a/version/version.go b/version/version.go index 7b9daf0ba20..20db9cee370 100644 --- a/version/version.go +++ b/version/version.go @@ -28,8 +28,8 @@ import ( var ( // MinClusterVersion is the min cluster version this etcd binary is compatible with. - MinClusterVersion = "2.2.0" - Version = "2.3.0+git" + MinClusterVersion = "2.3.0" + Version = "3.0.0-beta.0" // Git SHA Value will be set during build GitSHA = "Not provided (use ./build instead of go build)"