Skip to content

Commit

Permalink
update the version for bsc-erigon (#136)
Browse files Browse the repository at this point in the history
  • Loading branch information
calmbeing authored Jun 20, 2023
1 parent 9bab0b6 commit 5ccb1e9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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 5ccb1e9

Please sign in to comment.