From 047e789a24bde3681aa3cd84d294c1534c4035d9 Mon Sep 17 00:00:00 2001 From: Krishna Upadhyaya Date: Tue, 4 Jul 2023 15:42:44 +0530 Subject: [PATCH] Release version modifications --- params/version.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/params/version.go b/params/version.go index e25c318ccaf..9adffe7a2fc 100644 --- a/params/version.go +++ b/params/version.go @@ -31,10 +31,10 @@ var ( // see https://calver.org const ( - VersionMajor = 2 // Major version component of the current release - VersionMinor = 48 // Minor version component of the current release - VersionMicro = 0 // Patch version component of the current release - VersionModifier = "dev" // Modifier component of the current release + VersionMajor = 0 // Major version component of the current release + VersionMinor = 0 // Minor version component of the current release + VersionMicro = 8 // Patch version component of the current release + VersionModifier = "bor" // Modifier component of the current release VersionKeyCreated = "ErigonVersionCreated" VersionKeyFinished = "ErigonVersionFinished" ) @@ -56,7 +56,7 @@ func isRelease() bool { // Version holds the textual version string. var Version = func() string { - return fmt.Sprintf("%d.%02d.%d", VersionMajor, VersionMinor, VersionMicro) + return fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionMicro) }() // VersionWithMeta holds the textual version string including the metadata.