From 9ed3c538a0de24a9197bd761b8f004f39f036b90 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Wed, 23 Mar 2022 13:57:33 +0300 Subject: [PATCH] [#231] Lower minimal contract version update to v0.14.0 Main chain NeoFS contract was not updated to v0.14.2. Current contract version is v0.14.0 However, there is no functional changes between v0.14.0 and v0.14.2. To avoid NeoFS contract update, this commit lowers minimal contract version. All other contracts have been updated to v0.14.2 and they are not affected by this change. Signed-off-by: Alex Vanin --- common/version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/version.go b/common/version.go index 7a23962..aa9a05e 100644 --- a/common/version.go +++ b/common/version.go @@ -12,7 +12,7 @@ const ( // any migration routines. prevMajor = 0 prevMinor = 14 - prevPatch = 2 + prevPatch = 0 Version = major*1_000_000 + minor*1_000 + patch