Skip to content

Commit 2de49b0

Browse files
committed
params: release go-ethereum v1.10.22
1 parent 395f3d4 commit 2de49b0

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

params/version.go

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

2323
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
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.
4747
func ArchiveVersion(gitCommit string) string {
4848
vsn := Version
4949
if VersionMeta != "stable" {

0 commit comments

Comments
 (0)