Skip to content

Commit

Permalink
Prepare 1.0.0-rc1.
Browse files Browse the repository at this point in the history
  • Loading branch information
colinrtwhite committed Aug 18, 2020
1 parent 66a8ab9 commit c35e45a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/Extensions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ val Project.versionName: String

val Project.versionCode: Int
get() = versionName
.trimEnd { !it.isDigit() }
.takeWhile { it.isDigit() || it == '.' }
.split('.')
.map { it.toInt() }
.reversed()
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ compileSdk=30

# Maven
GROUP=io.coil-kt
VERSION_NAME=1.0.0-SNAPSHOT
VERSION_NAME=1.0.0-rc1

POM_DESCRIPTION=An image loading library for Android backed by Kotlin Coroutines.
POM_INCEPTION_YEAR=2019
Expand Down

0 comments on commit c35e45a

Please sign in to comment.