diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2016-11-15 21:29:33 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-11-15 21:29:33 +0800 |
commit | c3c58eb601d92d7ca581c597dd2b4960a1e59d96 (patch) | |
tree | ed349a8eb702ebf9edb1c9065321f9f0690bd4ff | |
parent | ce3c52d17dc5cba53f7b0334c37fb999069c0b9e (diff) | |
parent | 233950da400317db6744e4a184bdbe8c2a257443 (diff) | |
download | go-tangerine-c3c58eb601d92d7ca581c597dd2b4960a1e59d96.tar.gz go-tangerine-c3c58eb601d92d7ca581c597dd2b4960a1e59d96.tar.zst go-tangerine-c3c58eb601d92d7ca581c597dd2b4960a1e59d96.zip |
Merge pull request #3259 from obscuren/version-1-5-0v1.5.0
utils: stable 1.5.0
-rw-r--r-- | cmd/utils/version.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/cmd/utils/version.go b/cmd/utils/version.go index b057f4293..6baec7613 100644 --- a/cmd/utils/version.go +++ b/cmd/utils/version.go @@ -28,10 +28,10 @@ import ( ) const ( - VersionMajor = 1 // Major version component of the current release - VersionMinor = 5 // 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 + VersionMajor = 1 // Major version component of the current release + VersionMinor = 5 // Minor version component of the current release + VersionPatch = 0 // Patch version component of the current release + VersionMeta = "stable" // Version metadata to append to the version string ) // Version holds the textual version string. |