We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d7209a commit 20c18f9Copy full SHA for 20c18f9
src/app/Version.cs
@@ -43,7 +43,8 @@ public int CompareTo(Version other)
43
if (this.Minor != other.Minor) return this.Minor - other.Minor;
44
if (this.Patch != other.Patch) return this.Patch - other.Patch;
45
if (this.Stability != other.Stability) return this.Stability - other.Stability;
46
- return this.StabilityVersion - other.StabilityVersion;
+ if (this.StabilityVersion != other.StabilityVersion) return this.StabilityVersion - other.StabilityVersion;
47
+ return this.Label.CompareTo(other.Label);
48
}
49
50
public bool Equals(Version other)
0 commit comments