Release v0.12.1

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2021-10-19 13:03:04 +03:00 committed by Alex Vanin
parent a9503b5cf8
commit b57f2ffe6b
3 changed files with 16 additions and 2 deletions

View file

@ -3,7 +3,7 @@ package common
const (
major = 0
minor = 12
patch = 0
patch = 1
Version = major*1_000_000 + minor*1_000 + patch
)