This repository was archived by the owner on Oct 18, 2023. It is now read-only.
File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,10 @@ var (
31
31
32
32
// see https://calver.org
33
33
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
38
38
VersionKeyCreated = "ErigonVersionCreated"
39
39
VersionKeyFinished = "ErigonVersionFinished"
40
40
)
@@ -56,7 +56,7 @@ func isRelease() bool {
56
56
57
57
// Version holds the textual version string.
58
58
var Version = func () string {
59
- return fmt .Sprintf ("%d.%02d .%d" , VersionMajor , VersionMinor , VersionMicro )
59
+ return fmt .Sprintf ("%d.%d .%d" , VersionMajor , VersionMinor , VersionMicro )
60
60
}()
61
61
62
62
// VersionWithMeta holds the textual version string including the metadata.
You can’t perform that action at this time.
0 commit comments