diff options
author | Anton Evangelatov <anton.evangelatov@gmail.com> | 2019-05-17 16:14:39 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-17 16:14:39 +0800 |
commit | 509facd631e646989dae7fc9c3ec11a05b11a800 (patch) | |
tree | 0b82d1afffa00301f484a42cb256e78f8169210f | |
parent | c3b317a4fc5e59da87b2bd2b858c038cfb4ba07a (diff) | |
download | go-tangerine-509facd631e646989dae7fc9c3ec11a05b11a800.tar go-tangerine-509facd631e646989dae7fc9c3ec11a05b11a800.tar.gz go-tangerine-509facd631e646989dae7fc9c3ec11a05b11a800.tar.bz2 go-tangerine-509facd631e646989dae7fc9c3ec11a05b11a800.tar.lz go-tangerine-509facd631e646989dae7fc9c3ec11a05b11a800.tar.xz go-tangerine-509facd631e646989dae7fc9c3ec11a05b11a800.tar.zst go-tangerine-509facd631e646989dae7fc9c3ec11a05b11a800.zip |
swarm/version: v0.4.1 unstable (#19587)
-rw-r--r-- | swarm/version/version.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/swarm/version/version.go b/swarm/version/version.go index 0a5af222c..271a9cede 100644 --- a/swarm/version/version.go +++ b/swarm/version/version.go @@ -21,10 +21,10 @@ import ( ) const ( - VersionMajor = 0 // Major version component of the current release - VersionMinor = 4 // 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 + VersionMajor = 0 // Major version component of the current release + VersionMinor = 4 // Minor version component of the current release + VersionPatch = 1 // Patch version component of the current release + VersionMeta = "unstable" // Version metadata to append to the version string ) // Version holds the textual version string. |