Skip to content

Commit

Permalink
params: release go-ethereum v1.10.22
Browse files Browse the repository at this point in the history
  • Loading branch information
fjl committed Aug 22, 2022
1 parent 395f3d4 commit 2de49b0
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions params/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ import (
)

const (
VersionMajor = 1 // Major version component of the current release
VersionMinor = 10 // Minor version component of the current release
VersionPatch = 22 // Patch version component of the current release
VersionMeta = "unstable" // Version metadata to append to the version string
VersionMajor = 1 // Major version component of the current release
VersionMinor = 10 // Minor version component of the current release
VersionPatch = 22 // Patch version component of the current release
VersionMeta = "stable" // Version metadata to append to the version string
)

// Version holds the textual version string.
Expand All @@ -41,9 +41,9 @@ var VersionWithMeta = func() string {
return v
}()

// ArchiveVersion holds the textual version string used for Geth archives.
// e.g. "1.8.11-dea1ce05" for stable releases, or
// "1.8.13-unstable-21c059b6" for unstable releases
// ArchiveVersion holds the textual version string used for Geth archives. e.g.
// "1.8.11-dea1ce05" for stable releases, or "1.8.13-unstable-21c059b6" for unstable
// releases.
func ArchiveVersion(gitCommit string) string {
vsn := Version
if VersionMeta != "stable" {
Expand Down

0 comments on commit 2de49b0

Please sign in to comment.