FILE / ScuroNeko/Laniakea

utils/version.go

Исходный файл и его история в репозитории.
FILE fc4386df751ea17cd624df2eb3f338d342e3e1e1
Files
Laniakea/utils/version.go
T
ScuroNeko 7d4b150b0b
Golang lint / lint (push) Successful in 1m7s
(new): bump to rc 16
(fix): token replacer fix
2026-04-23 22:57:16 +03:00

15 lines
381 B
Go

package utils
const (
// VersionString is the module version string.
VersionString = "1.0.0-rc.16"
// VersionMajor is the module major version.
VersionMajor = 1
// 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 = 16
)