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 (
2121)
2222
2323const (
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
2828)
2929
3030// Version holds the textual version string.
@@ -41,9 +41,9 @@ var VersionWithMeta = func() string {
4141 return v
4242}()
4343
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.
4747func ArchiveVersion (gitCommit string ) string {
4848 vsn := Version
4949 if VersionMeta != "stable" {
You can’t perform that action at this time.
0 commit comments