From 98e7c9bc9ae33971427c78b26920a5fa7e629ec5 Mon Sep 17 00:00:00 2001 From: Shane Bammel Date: Fri, 23 Feb 2024 15:25:55 -0600 Subject: [PATCH] Prepare stable release --- params/version.go | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/params/version.go b/params/version.go index 19b22e029..6f47f46f0 100644 --- a/params/version.go +++ b/params/version.go @@ -21,9 +21,10 @@ import ( ) const ( - VersionMajor = 1 // Major version component of the current release - VersionMinor = 13 // Minor version component of the current release - VersionPatch = 13 // Patch version component of the current release + VersionMajor = 3 // Major version component of the current release + VersionMinor = 2 // Minor version component of the current release + VersionPatch = 0 // Patch version component of the current release + VariantMeta = "pulse" // Variant metadata to append to the version string VersionMeta = "stable" // Version metadata to append to the version string ) @@ -35,6 +36,9 @@ var Version = func() string { // VersionWithMeta holds the textual version string including the metadata. var VersionWithMeta = func() string { v := Version + if VariantMeta != "" { + v += "-" + VariantMeta + } if VersionMeta != "" { v += "-" + VersionMeta }