FILE / ScuroNeko/Laniakea

utils/version.go

Исходный файл и его история в репозитории.
FILE e92a0d37f3c41e5753dbce5fc143cb4091006f2c
Files
Laniakea/utils/version.go
T
ScuroNeko aa18da73d5 Add plugin message fallback
Route unmatched messages through plugin fallback handlers

Add observer coverage and bump version to rc.15
2026-04-13 16:27:53 +03:00

15 lines
381 B
Go

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