aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-09-28 18:40:44 +0800
committerGitHub <noreply@github.com>2016-09-28 18:40:44 +0800
commitf88bca7ba96a16e10b9feee453dbdb4f81962f34 (patch)
tree15f58419e13f75dc0dfa940be0b1a9f3930de34f /cmd/geth
parent7a5843de318f4bf0e41ddaab2d690fbe6fd04099 (diff)
parentd4608ae0d2fc76ea1ba1d3a97033e60bab1f0d59 (diff)
downloadgo-tangerine-f88bca7ba96a16e10b9feee453dbdb4f81962f34.tar
go-tangerine-f88bca7ba96a16e10b9feee453dbdb4f81962f34.tar.gz
go-tangerine-f88bca7ba96a16e10b9feee453dbdb4f81962f34.tar.bz2
go-tangerine-f88bca7ba96a16e10b9feee453dbdb4f81962f34.tar.lz
go-tangerine-f88bca7ba96a16e10b9feee453dbdb4f81962f34.tar.xz
go-tangerine-f88bca7ba96a16e10b9feee453dbdb4f81962f34.tar.zst
go-tangerine-f88bca7ba96a16e10b9feee453dbdb4f81962f34.zip
Merge pull request #3055 from karalabe/release/1.4v1.4.14
Geth 1.4.14: What else should we rewrite?
Diffstat (limited to 'cmd/geth')
-rw-r--r--cmd/geth/main.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index 8bcf5c14c..71a185eb5 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -47,11 +47,11 @@ import (
)
const (
- clientIdentifier = "Geth" // Client identifier to advertise over the network
- versionMajor = 1 // Major version component of the current release
- versionMinor = 4 // Minor version component of the current release
- versionPatch = 13 // Patch version component of the current release
- versionMeta = "stable" // Version metadata to append to the version string
+ clientIdentifier = "Geth" // Client identifier to advertise over the network
+ versionMajor = 1 // Major version component of the current release
+ versionMinor = 4 // Minor version component of the current release
+ versionPatch = 14 // Patch version component of the current release
+ versionMeta = "prerelease" // Version metadata to append to the version string
versionOracle = "0xfa7b9770ca4cb04296cac84f37736d4041251cdf" // Ethereum address of the Geth release oracle
)