targetStableForPreRelease function
Implementation
Version targetStableForPreRelease(Version original, ApiChangeMagnitude magnitude) {
final stable = stableVersion(original);
if (original.isPreRelease && magnitude == ApiChangeMagnitude.patch) {
return stable;
}
return bumpStable(stable, magnitude);
}