FILE / ScuroNeko/Laniakea

utils/version.go

Исходный файл и его история в репозитории.
FILE v1.0.0-rc.13
Files
Laniakea/utils/version.go
T
ScuroNeko 66eb72cb3c Finalize rc.13 framework contracts
Formalize update routing, config freeze, and error visibility
Add regression coverage and sync backlog records
2026-03-30 01:01:13 +03:00

15 lines
381 B
Go

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