From 99d8f32fe471acc805b0394aa9180b7dad467d01 Mon Sep 17 00:00:00 2001 From: meows Date: Thu, 20 Feb 2020 09:05:54 -0500 Subject: [PATCH 1/2] params: bump version to v1.10.0-stable See rationale here: https://github.com/etclabscore/core-geth/pull/29#issuecomment-589051584 Signed-off-by: meows --- params/version.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/params/version.go b/params/version.go index 60c71aa65b8e..0ed288f5058b 100644 --- a/params/version.go +++ b/params/version.go @@ -21,10 +21,10 @@ import ( ) const ( - VersionMajor = 1 // Major version component of the current release - VersionMinor = 9 // Minor 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 + VersionMajor = 1 // Major version component of the current release + VersionMinor = 10 // 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 VersionName = "CoreGeth" ) From fcaa0df7dd9f9178f24ab1b75f1d2c4e3ebc6e83 Mon Sep 17 00:00:00 2001 From: meows Date: Thu, 20 Feb 2020 09:07:47 -0500 Subject: [PATCH 2/2] params: bump version to v1.10.1-unstable Signed-off-by: meows --- params/version.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/params/version.go b/params/version.go index 0ed288f5058b..7dcce5b93643 100644 --- a/params/version.go +++ b/params/version.go @@ -21,10 +21,10 @@ import ( ) const ( - VersionMajor = 1 // Major version component of the current release - VersionMinor = 10 // 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 = 1 // Major version component of the current release + VersionMinor = 10 // 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 VersionName = "CoreGeth" )