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

Commit 047e789

Browse files
committed
Release version modifications
1 parent a049615 commit 047e789

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

params/version.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ var (
3131

3232
// see https://calver.org
3333
const (
34-
VersionMajor = 2 // Major version component of the current release
35-
VersionMinor = 48 // Minor version component of the current release
36-
VersionMicro = 0 // Patch version component of the current release
37-
VersionModifier = "dev" // Modifier component of the current release
34+
VersionMajor = 0 // Major version component of the current release
35+
VersionMinor = 0 // Minor version component of the current release
36+
VersionMicro = 8 // Patch version component of the current release
37+
VersionModifier = "bor" // Modifier component of the current release
3838
VersionKeyCreated = "ErigonVersionCreated"
3939
VersionKeyFinished = "ErigonVersionFinished"
4040
)
@@ -56,7 +56,7 @@ func isRelease() bool {
5656

5757
// Version holds the textual version string.
5858
var Version = func() string {
59-
return fmt.Sprintf("%d.%02d.%d", VersionMajor, VersionMinor, VersionMicro)
59+
return fmt.Sprintf("%d.%d.%d", VersionMajor, VersionMinor, VersionMicro)
6060
}()
6161

6262
// VersionWithMeta holds the textual version string including the metadata.

0 commit comments

Comments
 (0)