Update min client version and cache version to 1.0.0 (#1517)

This commit is contained in:
Alexander Matyushentsev 2019-04-24 10:15:02 -07:00 committed by GitHub
parent 60273ba84f
commit e75a7a5dea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -109,8 +109,8 @@ const (
// MinClientVersion is the minimum client version that can interface with this API server.
// When introducing breaking changes to the API or datastructures, this number should be bumped.
// The value here may be lower than the current value in VERSION
MinClientVersion = "0.12.0"
MinClientVersion = "1.0.0"
// CacheVersion is a objects version cached using util/cache/cache.go.
// Number should be bumped in case of backward incompatible change to make sure cache is invalidated after upgrade.
CacheVersion = "0.13.0"
CacheVersion = "1.0.0"
)