Some checks failed
ci/woodpecker/pr/pre-commit Pipeline was successful
Build / Build Components (1.19) (pull_request) Successful in 2m45s
Build / Build Components (1.20) (pull_request) Successful in 8m1s
Tests and linters / Tests (1.19) (pull_request) Failing after 3m0s
Tests and linters / Tests (1.20) (pull_request) Failing after 3m20s
Tests and linters / Lint (pull_request) Failing after 9m45s
Tests and linters / Tests with -race (pull_request) Failing after 4m38s
Tests and linters / Staticcheck (pull_request) Failing after 9m4s
Signed-off-by: Airat Arifullin a.arifullin@yadro.com
17 lines
356 B
Go
17 lines
356 B
Go
package version
|
|
|
|
import (
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/version"
|
|
)
|
|
|
|
// IsValid checks if Version is not earlier than the genesis version of the FrostFS.
|
|
func IsValid(v version.Version) bool {
|
|
const (
|
|
startMajor = 2
|
|
startMinor = 7
|
|
)
|
|
|
|
mjr := v.GetMajor()
|
|
|
|
return mjr > startMajor || mjr == startMajor && v.GetMinor() >= startMinor
|
|
}
|