Skip to content

Commit 87c390b

Browse files
committed
Merge pull request #185 from gius/master
Fixed bug in SemanticVersion.Compare
2 parents 0d72bbf + 493a204 commit 87c390b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

GitVersionCore/SemanticVersion.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public int CompareTo(SemanticVersion value)
163163
return -1;
164164
}
165165

166-
return -1;
166+
return 0;
167167
}
168168

169169
public override string ToString()

0 commit comments

Comments
 (0)