The 'Same Major' versioning is designed to handle the case where a version needs to treated as a "greate than or equal to" constraint.
The 'Same Major' versioning is designed to handle the case where a version needs to treated as a "greater than or equal to" constraint.
Specifically, the case where the version say, `X.Y.Z` signifies a range of compatibility from greater than or equal to `X.Y.Z` to less than `X+1`.
This process uses Semver-Coerced versioning beneath the surface, single versions (e.g., `X.Y.Z`) are converted to a range like `X+1` and then passed to the corresponding semver-coerced method.