From 8bbb0ffedb7ffab24c49427dca542aec57a4635d Mon Sep 17 00:00:00 2001 From: Kevin Gorham Date: Sat, 19 Sep 2020 03:42:37 -0400 Subject: [PATCH] Update the only dependency: Kotlin. --- buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt | 4 ++-- lib/publish.gradle | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt b/buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt index ce1dfee..cf85dbc 100644 --- a/buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt +++ b/buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt @@ -3,10 +3,10 @@ package cash.z.ecc.android object Deps { // For use in the top-level build.gradle which gives an error when provided // `Deps.Kotlin.version` directly - const val kotlinVersion = "1.3.72" + const val kotlinVersion = "1.4.10" const val group = "cash.z.ecc.android" const val artifactName = "kotlin-bip39" - const val versionName = "1.0.0-beta09" + const val versionName = "1.0.1" const val description = "A concise implementation of BIP-0039 in Kotlin for Android." const val githubUrl = "https://github.com/zcash/kotlin-bip39" const val publishingActive = false // set to true to activate bintrayUpload task diff --git a/lib/publish.gradle b/lib/publish.gradle index 23069d2..6208132 100644 --- a/lib/publish.gradle +++ b/lib/publish.gradle @@ -65,8 +65,8 @@ publishing { } bintray { - user = project.hasProperty('bintrayUser') ?: System.getenv('BINTRAY_USER') - key = project.hasProperty('bintrayApiKey') ?: System.getenv('BINTRAY_API_KEY') + user = project.findProperty('bintrayUser') ?: System.getenv('BINTRAY_USER') + key = project.findProperty('bintrayApiKey') ?: System.getenv('BINTRAY_API_KEY') publications = ['Production'] override = true pkg {