Release v0.14.0 - Geojedo (거제도, 巨濟島)

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2022-01-13 15:28:43 +03:00 committed by Alex Vanin
parent 3c7b505f28
commit f5531561b8
2 changed files with 21 additions and 4 deletions

View file

@ -4,15 +4,15 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
const (
major = 0
minor = 13
patch = 2
minor = 14
patch = 0
// Versions from which an update should be performed.
// These should be used in a group (so prevMinor can be equal to minor if there are
// any migration routines.
prevMajor = 0
prevMinor = 12
prevPatch = 2
prevMinor = 13
prevPatch = 0
Version = major*1_000_000 + minor*1_000 + patch