From 91df01e6bb9a27f772241ac0439d455878eee630 Mon Sep 17 00:00:00 2001 From: Gaston Ponti Date: Fri, 26 Aug 2022 20:07:59 -0300 Subject: [PATCH] Release v1.6.0 --- params/version.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/params/version.go b/params/version.go index ef93da9f14..8ccdc74631 100644 --- a/params/version.go +++ b/params/version.go @@ -25,10 +25,10 @@ import ( // On release branches, it should be a beta or stable. For example: // "1.3.0-beta", "1.3.0-beta.2", etc. and then "1.3.0-stable", "1.3.1-stable", etc. const ( - VersionMajor = 1 // Major version component of the current release - VersionMinor = 6 // Minor version component of the current release - VersionPatch = 0 // Patch version component of the current release - VersionMeta = "unstable" // Version metadata to append to the version string + VersionMajor = 1 // Major version component of the current release + VersionMinor = 6 // Minor version component of the current release + VersionPatch = 0 // Patch version component of the current release + VersionMeta = "stable" // Version metadata to append to the version string ) type VersionInfo struct {