From 3832c457d89ccd912ab0fe1f69844a78c4622f92 Mon Sep 17 00:00:00 2001 From: Victor Farazdagi Date: Sun, 11 Dec 2016 14:42:22 +0300 Subject: [PATCH] version bump --- geth/node.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/geth/node.go b/geth/node.go index 5c02dfade..d66c02959 100644 --- a/geth/node.go +++ b/geth/node.go @@ -27,9 +27,9 @@ import ( const ( ClientIdentifier = "StatusIM" // Client identifier to advertise over the network VersionMajor = 1 // Major version component of the current release - VersionMinor = 1 // Minor version component of the current release + VersionMinor = 2 // 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 + VersionMeta = "unstable" // Version metadata to append to the version string RPCPort = 8545 // RPC port (replaced in unit tests) NetworkPort = 30303