diff options
author | Péter Szilágyi <peterke@gmail.com> | 2017-11-21 17:59:12 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2017-11-21 17:59:12 +0800 |
commit | 005665867d50a4b38e269b6b84156db2f75469a3 (patch) | |
tree | ccfac08b71e0dd936dc6258a04f2ceee525cce63 | |
parent | 4bb3c89d44e372e6a9ab85a8be0c9345265c763a (diff) | |
download | dexon-005665867d50a4b38e269b6b84156db2f75469a3.tar dexon-005665867d50a4b38e269b6b84156db2f75469a3.tar.gz dexon-005665867d50a4b38e269b6b84156db2f75469a3.tar.bz2 dexon-005665867d50a4b38e269b6b84156db2f75469a3.tar.lz dexon-005665867d50a4b38e269b6b84156db2f75469a3.tar.xz dexon-005665867d50a4b38e269b6b84156db2f75469a3.tar.zst dexon-005665867d50a4b38e269b6b84156db2f75469a3.zip |
VERSION, params: begin 1.8.0 release cycle
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | params/version.go | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -1 +1 @@ -1.7.3 +1.8.0 diff --git a/params/version.go b/params/version.go index 4fb1d0847..32d4a2e23 100644 --- a/params/version.go +++ b/params/version.go @@ -21,10 +21,10 @@ import ( ) const ( - VersionMajor = 1 // Major version component of the current release - VersionMinor = 7 // Minor version component of the current release - VersionPatch = 3 // Patch version component of the current release - VersionMeta = "stable" // Version metadata to append to the version string + VersionMajor = 1 // Major version component of the current release + VersionMinor = 8 // Minor version component of the current release + VersionPatch = 0 // Patch version component of the current release + VersionMeta = "unstable" // Version metadata to append to the version string ) // Version holds the textual version string. |