Bump version

This commit is contained in:
dfsek 2021-03-31 20:50:17 -07:00 committed by GitHub
parent 0013d4e682
commit f8e8ce8bc2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,6 @@
import com.dfsek.terra.getGitHash
val versionObj = Version("5", "1", "1", true)
val versionObj = Version("5", "1", "2", true)
allprojects {
version = versionObj
@ -18,4 +18,4 @@ class Version(val major: String, val minor: String, val revision: String, val pr
else //Only use git hash if it's a prerelease.
"$major.$minor.$revision-BETA+${getGitHash()}"
}
}
}