From e75a7a5dea1007f9c30b6bae4891bab328a446b3 Mon Sep 17 00:00:00 2001 From: Alexander Matyushentsev Date: Wed, 24 Apr 2019 10:15:02 -0700 Subject: [PATCH] Update min client version and cache version to 1.0.0 (#1517) --- common/common.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/common.go b/common/common.go index e79f3e6bc6..873f2190bd 100644 --- a/common/common.go +++ b/common/common.go @@ -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" )