diff --git a/README.md b/README.md index 7b8eba5..401bee4 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # kotlin-bip39 -[![license](https://img.shields.io/github/license/zcash/android-bip39.svg?maxAge=2592000&style=plastic)](https://github.com/zcash/android-bip39/blob/master/LICENSE) -[![CircleCI](https://img.shields.io/circleci/build/github/zcash/android-bip39/master?style=plastic)](https://circleci.com/gh/zcash/android-bip39/tree/master) +[![license](https://img.shields.io/github/license/zcash/kotlin-bip39.svg?maxAge=2592000&style=plastic)](https://github.com/zcash/kotlin-bip39/blob/master/LICENSE) +[![CircleCI](https://img.shields.io/circleci/build/github/zcash/kotlin-bip39/master?style=plastic)](https://circleci.com/gh/zcash/kotlin-bip39/tree/master) [![@gmale](https://img.shields.io/badge/contact-android@z.cash-5AA9E7.svg?style=plastic)](https://github.com/gmale) -![Bintray](https://img.shields.io/bintray/v/ecc-mobile/android-bip39/android-bip39?color=success&style=plastic) +![Bintray](https://img.shields.io/bintray/v/ecc-mobile/android/kotlin-bip39?color=success&style=plastic) [![Keybase ZEC](https://img.shields.io/keybase/zec/kevinecc?logoColor=red&style=social)](https://keybase.io/kevinecc) @@ -30,7 +30,7 @@ Add dependencies (see bintray badge, above, for latest version number such as `1 ```groovy dependencies { - implementation "cash.z.ecc.android:android-bip39:${latestVersion}" + implementation "cash.z.ecc.android:kotlin-bip39:${latestVersion}" } repository { 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 185118a..2c55667 100644 --- a/buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt +++ b/buildSrc/src/main/java/cash/z/ecc/android/Dependencies.kt @@ -5,7 +5,7 @@ object Deps { // `Deps.Kotlin.version` directly const val kotlinVersion = "1.3.72" const val group = "cash.z.ecc.android" - const val versionName = "1.0.0-beta07" + const val versionName = "1.0.0-beta08" const val description = "A concise implementation of BIP-0039 in Kotlin for Android." object Kotlin : Version(kotlinVersion) { diff --git a/lib/build.gradle b/lib/build.gradle index a8c72cb..67aab3f 100644 --- a/lib/build.gradle +++ b/lib/build.gradle @@ -74,7 +74,7 @@ def pomConfig = { } scm { - url "https://github.com/zcash/android-bip39" + url "https://github.com/zcash/kotlin-bip39" } } @@ -99,14 +99,14 @@ publishing { artifact sourcesJar artifact docsJar groupId Deps.group - artifactId "android-bip39" + artifactId "kotlin-bip39" version Deps.versionName pom.withXml { def root = asNode() root.appendNode('description', Deps.description) - root.appendNode('name', 'android-bip39') - root.appendNode('url', 'https://github.com/zcash/android-bip39') + root.appendNode('name', 'kotlin-bip39') + root.appendNode('url', 'https://github.com/zcash/kotlin-bip39') root.children().last() + pomConfig } } @@ -119,15 +119,15 @@ bintray { publications = ['Production'] override = true pkg { - repo = 'android-bip39' - name = 'android-bip39' + repo = 'android' + name = 'kotlin-bip39' description = Deps.description publish = true publicDownloadNumbers = true userOrg = 'ecc-mobile' licenses = ['MIT'] - vcsUrl = 'https://github.com/zcash/android-bip39.git' - dryRun = false + vcsUrl = 'https://github.com/zcash/kotlin-bip39.git' + dryRun = true version { name = Deps.versionName desc = Deps.description diff --git a/settings.gradle b/settings.gradle index a9f8e6a..89131bc 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1,2 @@ -rootProject.name = 'android-bip39' +rootProject.name = 'kotlin-bip39' include ':lib'