File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
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 = 1 // Major version component of the current release
25
- VersionMinor = 10 // Minor version component of the current release
26
- VersionPatch = 22 // Patch version component of the current release
27
- VersionMeta = "unstable " // Version metadata to append to the version string
24
+ VersionMajor = 1 // Major version component of the current release
25
+ VersionMinor = 10 // Minor version component of the current release
26
+ VersionPatch = 22 // 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.
@@ -41,9 +41,9 @@ var VersionWithMeta = func() string {
41
41
return v
42
42
}()
43
43
44
- // ArchiveVersion holds the textual version string used for Geth archives.
45
- // e.g. "1.8.11-dea1ce05" for stable releases, or
46
- // "1.8.13-unstable-21c059b6" for unstable releases
44
+ // ArchiveVersion holds the textual version string used for Geth archives. e.g.
45
+ // "1.8.11-dea1ce05" for stable releases, or "1.8.13-unstable-21c059b6" for unstable
46
+ // releases.
47
47
func ArchiveVersion (gitCommit string ) string {
48
48
vsn := Version
49
49
if VersionMeta != "stable" {
You can’t perform that action at this time.
0 commit comments