File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -21,10 +21,10 @@ import (
21
21
)
22
22
23
23
const (
24
- VersionMajor = 0 // Major version component of the current release
25
- VersionMinor = 3 // Minor version component of the current release
26
- VersionPatch = 0 // Patch version component of the current release
27
- VersionMeta = "beta " // Version metadata to append to the version string
24
+ VersionMajor = 0 // Major version component of the current release
25
+ VersionMinor = 3 // Minor version component of the current release
26
+ VersionPatch = 0 // Patch version component of the current release
27
+ VersionMeta = "stable " // Version metadata to append to the version string
28
28
)
29
29
30
30
// Version holds the textual version string.
@@ -43,7 +43,8 @@ var VersionWithMeta = func() string {
43
43
44
44
// ArchiveVersion holds the textual version string used for Geth archives.
45
45
// e.g. "1.8.11-dea1ce05" for stable releases, or
46
- // "1.8.13-unstable-21c059b6" for unstable releases
46
+ //
47
+ // "1.8.13-unstable-21c059b6" for unstable releases
47
48
func ArchiveVersion (gitCommit string ) string {
48
49
vsn := Version
49
50
if VersionMeta != "stable" {
You can’t perform that action at this time.
0 commit comments