diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-02-14 00:54:59 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-02-14 00:54:59 +0800 |
commit | a07539fb88db7231d18db918ed7a6a4e32f97450 (patch) | |
tree | 4c65447ca6b210ce64dede921b3fa41d34b554f8 | |
parent | 6988e5f0747523d2e93f0c35b9c64a66a7f5986e (diff) | |
parent | aba016da728d7c121886fe908ad8511b6e74bb6e (diff) | |
download | dexon-a07539fb88db7231d18db918ed7a6a4e32f97450.tar.gz dexon-a07539fb88db7231d18db918ed7a6a4e32f97450.tar.zst dexon-a07539fb88db7231d18db918ed7a6a4e32f97450.zip |
Merge pull request #3671 from karalabe/1.5.9-stable
params: 1.5.9 stable
-rw-r--r-- | params/version.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/params/version.go b/params/version.go index 72ec2d239..bc5756fc6 100644 --- a/params/version.go +++ b/params/version.go @@ -19,10 +19,10 @@ package params import "fmt" const ( - VersionMajor = 1 // Major version component of the current release - VersionMinor = 5 // Minor version component of the current release - VersionPatch = 9 // 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 = 5 // Minor version component of the current release + VersionPatch = 9 // Patch version component of the current release + VersionMeta = "stable" // Version metadata to append to the version string ) // Version holds the textual version string. |