diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-12-14 22:06:54 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-14 22:06:54 +0800 |
commit | ff07d54843ea7ed9997c420d216b4c007f9c80c3 (patch) | |
tree | f8eb0ad64f60e76b307d71f1504d4eb2b4dc4364 | |
parent | b792412d3101456bded148e122d9e8c2a0829ba0 (diff) | |
parent | e53879328c82ec02233ea2aa9a8775e496c79e4f (diff) | |
download | dexon-ff07d54843ea7ed9997c420d216b4c007f9c80c3.tar dexon-ff07d54843ea7ed9997c420d216b4c007f9c80c3.tar.gz dexon-ff07d54843ea7ed9997c420d216b4c007f9c80c3.tar.bz2 dexon-ff07d54843ea7ed9997c420d216b4c007f9c80c3.tar.lz dexon-ff07d54843ea7ed9997c420d216b4c007f9c80c3.tar.xz dexon-ff07d54843ea7ed9997c420d216b4c007f9c80c3.tar.zst dexon-ff07d54843ea7ed9997c420d216b4c007f9c80c3.zip |
Merge pull request #3440 from karalabe/release-1.5.5
params: stable version 1.5.5
-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 f8c0d3c9a..23704710b 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 = 5 // 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 = 5 // Patch version component of the current release + VersionMeta = "stable" // Version metadata to append to the version string ) // Version holds the textual version string. |