Skip to content

Commit d9e5e20

Browse files
authored
Merge pull request #620 from cffls/master
Bump version to stable
2 parents 31da972 + 43d894c commit d9e5e20

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

params/version.go

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ import (
2121
)
2222

2323
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
2828
)
2929

3030
// Version holds the textual version string.
@@ -43,7 +43,8 @@ var VersionWithMeta = func() string {
4343

4444
// ArchiveVersion holds the textual version string used for Geth archives.
4545
// 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
4748
func ArchiveVersion(gitCommit string) string {
4849
vsn := Version
4950
if VersionMeta != "stable" {

0 commit comments

Comments
 (0)