[#280] common: Update version number

Signed-off-by: Evgenii Stratonikov <evgeniy@morphbits.ru>
support/v0.16
Evgenii Stratonikov 2022-10-04 18:41:29 +03:00 committed by fyrchik
parent f276e24137
commit b62dae136e
2 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
v0.15.4 v0.15.6

View File

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