From 834c1f86d8b0fe6e6fe792e9f6eb9ef79cb2a50d Mon Sep 17 00:00:00 2001 From: Luke Williams Date: Sun, 29 Dec 2019 18:56:04 +0100 Subject: [PATCH] params/version: bump patch version (3.0.1) --- params/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/params/version.go b/params/version.go index 27349de94e46..91a679d4aab3 100644 --- a/params/version.go +++ b/params/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 3 // Major version component of the current release VersionMinor = 0 // Minor version component of the current release - VersionPatch = 0 // Patch version component of the current release + VersionPatch = 1 // Patch version component of the current release VersionMeta = "andromeda" // Version metadata to append to the version string )