From 5cdcca4544bd2095dc7cbd71e621d35adf63c6f4 Mon Sep 17 00:00:00 2001 From: Alexander Matyushentsev Date: Fri, 9 Oct 2020 16:16:38 -0700 Subject: [PATCH] fix: bump cache version to avoid nil pointer error (#4525) --- common/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/common.go b/common/common.go index 9857a3c0df..82a480120f 100644 --- a/common/common.go +++ b/common/common.go @@ -183,7 +183,7 @@ const ( MinClientVersion = "1.4.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 = "1.8.0" + CacheVersion = "1.8.1" ) // GetGnuPGHomePath retrieves the path to use for GnuPG home directory, which is either taken from GNUPGHOME environment or a default value