fix Version.v6_0_0 min compatibility version to 5.5.0
This commit is contained in:
parent
ad1b9feb20
commit
1d2a10bad8
|
@ -308,8 +308,8 @@ public class Version implements Comparable<Version> {
|
||||||
final int bwcMajor;
|
final int bwcMajor;
|
||||||
final int bwcMinor;
|
final int bwcMinor;
|
||||||
if (major == 6) { // we only specialize for current major here
|
if (major == 6) { // we only specialize for current major here
|
||||||
bwcMajor = Version.V_5_4_0.major;
|
bwcMajor = Version.V_5_5_0.major;
|
||||||
bwcMinor = Version.V_5_4_0.minor;
|
bwcMinor = Version.V_5_5_0.minor;
|
||||||
} else if (major > 6) { // all the future versions are compatible with first minor...
|
} else if (major > 6) { // all the future versions are compatible with first minor...
|
||||||
bwcMajor = major -1;
|
bwcMajor = major -1;
|
||||||
bwcMinor = 0;
|
bwcMinor = 0;
|
||||||
|
|
Loading…
Reference in New Issue