Skip to content

Commit

Permalink
Bump version from 1.6.0-rc02 to 1.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
wax911 committed Nov 1, 2021
1 parent d297478 commit 41d52c8
Showing 1 changed file with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,17 @@ object Versions {
const val minSdk = 21

private const val major = 1
private const val minor = 6
private const val minor = 7
private const val patch = 0
private const val revision = 2
private const val revision = 0

private const val channel = "rc"

const val versionCode = major * 100_000 + minor * 10_000 + patch * 1_000 + revision * 100
val versionName = "$major.$minor.$patch-rc${revision.toVersion()}"
val versionName = if (revision > 1)
"$major.$minor.$patch-${channel}${revision.toVersion()}"
else
"$major.$minor.$patch"

const val mockk = "1.12.0"
const val junit = "4.13.2"
Expand Down

0 comments on commit 41d52c8

Please sign in to comment.