From 6211e071d1c491da48c306c6b7ccf99ccb42fbb7 Mon Sep 17 00:00:00 2001 From: Paul Lange Date: Tue, 12 Mar 2024 17:12:02 +0100 Subject: [PATCH] Prepare v1.8.2 (#2281) --- params/version.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/params/version.go b/params/version.go index ca51622d5e..9017a0a00b 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 = 8 // Minor version component of the current release - VersionPatch = 2 // 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 = 8 // Minor version component of the current release + VersionPatch = 2 // Patch version component of the current release + VersionMeta = "stable" // Version metadata to append to the version string ) // Version holds the textual version string.