Skip to content
This repository has been archived by the owner on Oct 18, 2023. It is now read-only.

Commit

Permalink
Release version modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKrishna committed Dec 8, 2022
1 parent 2041735 commit de53916
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ var (

// see https://calver.org
const (
VersionMajor = 2 // Major version component of the current release
VersionMinor = 31 // 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 = 4 // Patch version component of the current release
VersionModifier = "bor" // Modifier component of the current release
VersionKeyCreated = "ErigonVersionCreated"
VersionKeyFinished = "ErigonVersionFinished"
)
Expand All @@ -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.
Expand Down

0 comments on commit de53916

Please sign in to comment.