[#82] common: Update version
DCO action / DCO (pull_request) Successful in 1m1s Details
Tests / Tests (1.20) (pull_request) Successful in 1m32s Details
Tests / Tests (1.19) (pull_request) Successful in 1m38s Details

Signed-off-by: Evgenii Stratonikov <e.stratonikov@yadro.com>
pull/82/head
Evgenii Stratonikov 2024-03-13 20:52:59 +03:00
parent c9c53bb9ec
commit 5119f655fe
2 changed files with 4 additions and 4 deletions

View File

@ -1 +1 @@
v0.18.0
v0.19.1

View File

@ -4,14 +4,14 @@ import "github.com/nspcc-dev/neo-go/pkg/interop/native/std"
const (
major = 0
minor = 18
patch = 0
minor = 19
patch = 1
// 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 = 16
prevMinor = 18
prevPatch = 0
Version = major*1_000_000 + minor*1_000 + patch