FILE / ScuroNeko/Laniakea

utils/version.go

Исходный файл и его история в репозитории.
FILE 38309e74f6fe08ab127c796e8b01a56c95943744
Files
Laniakea/utils/version.go
T
ScuroNekoandClaude Sonnet 4.6 38309e74f6
Golang lint / lint (push) Successful in 1m40s
(fix): polling loop exits on HTTP client timeout, not only on context cancel
(fix): HTTP client timeout too close to poll timeout

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-11 13:44:22 +03:00

15 lines
374 B
Go

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