in src/main/kotlin/org/jetbrains/changelog/Version.kt [54:60]
override fun hashCode(): Int {
var result = major
result = 31 * result + minor
result = 31 * result + patch
result = 31 * result + version.hashCode()
return result
}