diff options
author | Felix Lange <fjl@twurst.com> | 2019-01-30 00:43:13 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2019-01-30 00:43:13 +0800 |
commit | f4094d09cd3bf4c1420f358d77b803d5d84d0994 (patch) | |
tree | d151b4c6e1a039662abb0d31d593847c85e18e21 | |
parent | 1a19c596bf489bb8489156706d42ffa9213d7ffe (diff) | |
download | go-tangerine-f4094d09cd3bf4c1420f358d77b803d5d84d0994.tar go-tangerine-f4094d09cd3bf4c1420f358d77b803d5d84d0994.tar.gz go-tangerine-f4094d09cd3bf4c1420f358d77b803d5d84d0994.tar.bz2 go-tangerine-f4094d09cd3bf4c1420f358d77b803d5d84d0994.tar.lz go-tangerine-f4094d09cd3bf4c1420f358d77b803d5d84d0994.tar.xz go-tangerine-f4094d09cd3bf4c1420f358d77b803d5d84d0994.tar.zst go-tangerine-f4094d09cd3bf4c1420f358d77b803d5d84d0994.zip |
params, swarm/version: Geth v1.9.0 unstable, Swarm v0.3.11-unstable
-rw-r--r-- | params/version.go | 4 | ||||
-rw-r--r-- | swarm/version/version.go | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/params/version.go b/params/version.go index 33e99a082..d3954e0bc 100644 --- a/params/version.go +++ b/params/version.go @@ -22,8 +22,8 @@ import ( const ( VersionMajor = 1 // Major version component of the current release - VersionMinor = 8 // Minor version component of the current release - VersionPatch = 22 // Patch version component of the current release + VersionMinor = 9 // 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 ) diff --git a/swarm/version/version.go b/swarm/version/version.go index 9c7248110..e001ff7ca 100644 --- a/swarm/version/version.go +++ b/swarm/version/version.go @@ -23,7 +23,7 @@ import ( const ( VersionMajor = 0 // Major version component of the current release VersionMinor = 3 // Minor version component of the current release - VersionPatch = 10 // Patch version component of the current release + VersionPatch = 11 // Patch version component of the current release VersionMeta = "unstable" // Version metadata to append to the version string ) |