diff --git a/version/version.go b/version/version.go index e51ce31de..d51dac2de 100644 --- a/version/version.go +++ b/version/version.go @@ -8,10 +8,10 @@ import ( ) func init() { - params.VersionMajor = 1 // Major version component of the current release - params.VersionMinor = 0 // Minor version component of the current release - params.VersionPatch = 3 // Patch version component of the current release - params.VersionMeta = "unstable" // Version metadata to append to the version string + params.VersionMajor = 1 // Major version component of the current release + params.VersionMinor = 1 // Minor version component of the current release + params.VersionPatch = 0 // Patch version component of the current release + params.VersionMeta = "rc.2" // Version metadata to append to the version string } func BigToString(b *big.Int) string {