FILE / ScuroNeko/Laniakea

utils/version.go

Исходный файл и его история в репозитории.
FILE v1.2.0
Files
Laniakea/utils/version.go
T
ScuroNeko 29b208eeec
Golang lint / lint (push) Successful in 11m32s
(new): v1.2 release
2026-08-19 14:58:25 +03:00

15 lines
374 B
Go

package utils
const (
// VersionString is the module version string.
VersionString = "1.2.0"
// VersionMajor is the module major version.
VersionMajor = 1
// VersionMinor is the module minor version.
VersionMinor = 2
// VersionPatch is the module patch version.
VersionPatch = 0
// VersionBeta is the prerelease counter for the current version.
VersionBeta = 0
)