-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Support new Spring release train versioning and suffixes #193
Comments
See gh-193 for failing 2020.0.0 (which is a GA release).
Also Possible impl for public boolean isRelease() {
return this.version != null && (
this.version.contains("RELEASE") ||
(!isSnapshot() && !isMilestone() && !isRc())
);
} also |
pseudo code
|
See also 3658fcc |
|
Added support for branch resolution via 0e3a95f |
Can this be closed? |
This is still a problem for at least release notes. It thinks the release train is 2020 when it should be 2020.0 |
We are moving to calver with
YYYY.MINOR.MICRO
suffix for prereleases are-MX
,-RCX
. For release there is no longer a.RELEASE
.In
ProjectVersionTests.should_return_true_for_a_valid_version()
the following happensThe text was updated successfully, but these errors were encountered: