Explorar el Código

*: bump to 3.0.0-beta.0

Gyu-Ho Lee hace 10 años
padre
commit
74ea9ea5cd
Se han modificado 2 ficheros con 3 adiciones y 2 borrados
  1. 1 0
      etcdserver/api/v2http/capability.go
  2. 2 2
      version/version.go

+ 1 - 0
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

+ 2 - 2
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)"