diff --git a/params/version.go b/params/version.go index 927c488281e..48f0e58104f 100644 --- a/params/version.go +++ b/params/version.go @@ -31,9 +31,9 @@ var ( // see https://calver.org const ( - VersionMajor = 2 // Major version component of the current release - VersionMinor = 43 // Minor version component of the current release - VersionMicro = 0 // Patch version component of the current release + VersionMajor = 1 // Major version component of the current release + VersionMinor = 1 // Minor version component of the current release + VersionMicro = 1 // Patch version component of the current release VersionModifier = "dev" // 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.