FILE / ScuroNeko/Laniakea

utils/version.go

Исходный файл и его история в репозитории.
FILE bf323f92ff7dbedc73220553c6775828ebeacc23
Files
Laniakea/utils/version.go
T
ScuroNeko d78526242b
Golang lint / lint (push) Failing after 1m37s
(new): support Bot API 10.3
(fix): finalize v2 contracts
(tests): cover v2 migration
(doc): prepare release guidance
2026-09-08 23:21:38 +03:00

15 lines
379 B
Go

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