Skip to content

Commit

Permalink
Merge branch 'release/0.3.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis committed Oct 3, 2019
2 parents 4a9e48b + f1f5c61 commit 926bdeb
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 18 deletions.
3 changes: 3 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,9 @@ UportHDSigner().signJwtBundle(activity, seedHandle, derivationPath, data, prompt

### Changelog

#### 0.3.6
* [support] bump kethereum to 0.76.2 and use lowercase imports ( a4ae6c16 )

#### 0.3.5
* [feat] add `suspend` extension for `UportHDSigner.signTransaction()` (#21)

Expand Down
10 changes: 5 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
buildscript {
ext {
kotlin_version = "1.3.50"
android_tools_version = '3.5.0'
android_tools_version = '3.5.1'
coroutines_version = "1.3.0"

build_tools_version = "28.0.3"
Expand All @@ -21,14 +21,14 @@ buildscript {
mockk_version = "1.9.3"
assertk_version = "0.13"
detekt_version = "1.0.0-RC14"
jacoco_version = "0.8.4"

spongycastle_version = "1.58.0.0"
kethereum_version = "0.76.1"
kethereum_version = "0.76.2"
khex_version = "1.0.0-RC3"
kotlin_common_version = "0.3.1"
jacoco_version = "0.8.4"
kotlin_common_version = "0.3.2"

current_release_version = "0.3.5"
current_release_version = "0.3.6"
}

repositories {
Expand Down
6 changes: 3 additions & 3 deletions demoapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ dependencies {

//used to generate and encode seeds to demonstrate importing them
implementation "com.github.uport-project.kotlin-common:core:$kotlin_common_version"
implementation "com.github.komputing.KHex:extensions-jvm:$khex_version"
implementation "com.github.komputing.KEthereum:bip39:$kethereum_version"
implementation "com.github.komputing.KEthereum:bip39_wordlist_en:$kethereum_version"
implementation "com.github.komputing.khex:extensions-jvm:$khex_version"
implementation "com.github.komputing.kethereum:bip39:$kethereum_version"
implementation "com.github.komputing.kethereum:bip39_wordlist_en:$kethereum_version"

implementation "com.android.support.constraint:constraint-layout:$constraint_layout_version"

Expand Down
20 changes: 10 additions & 10 deletions signer/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,15 @@ dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
implementation "com.android.support:appcompat-v7:$support_lib_version"

implementation "com.github.komputing.KEthereum:bip39:$kethereum_version"
implementation "com.github.komputing.KEthereum:bip32:$kethereum_version"
implementation "com.github.komputing.KEthereum:bip39_wordlist_en:$kethereum_version"
implementation "com.github.komputing.kethereum:bip39:$kethereum_version"
implementation "com.github.komputing.kethereum:bip32:$kethereum_version"
implementation "com.github.komputing.kethereum:bip39_wordlist_en:$kethereum_version"

api "com.github.komputing.KEthereum:model:$kethereum_version"
api "com.github.komputing.kethereum:model:$kethereum_version"

implementation "com.github.komputing.KEthereum:crypto:$kethereum_version"
implementation "com.github.komputing.KEthereum:extensions:$kethereum_version"
implementation "com.github.komputing.KEthereum:hashes:$kethereum_version"
implementation "com.github.komputing.kethereum:crypto:$kethereum_version"
implementation "com.github.komputing.kethereum:extensions:$kethereum_version"
implementation "com.github.komputing.kethereum:hashes:$kethereum_version"
api "com.github.uport-project.kotlin-common:signer-common:$kotlin_common_version"
implementation "com.github.uport-project.kotlin-common:core:$kotlin_common_version"
implementation "com.madgag.spongycastle:prov:$spongycastle_version"
Expand All @@ -73,9 +73,9 @@ dependencies {
androidTestImplementation "com.android.support.test:rules:$test_rules_version"
androidTestImplementation "com.willowtreeapps.assertk:assertk-jvm:$assertk_version"
androidTestImplementation "com.github.uport-project.kotlin-common:test-helpers:$kotlin_common_version"
androidTestImplementation "com.github.komputing.KHex:extensions-jvm:$khex_version"
androidTestImplementation "com.github.komputing.khex:extensions-jvm:$khex_version"

testImplementation "com.willowtreeapps.assertk:assertk-jvm:$assertk_version"
testImplementation "com.github.komputing.KEthereum:bip44:$kethereum_version"
testImplementation "com.github.komputing.KHex:extensions-jvm:$khex_version"
testImplementation "com.github.komputing.kethereum:bip44:$kethereum_version"
testImplementation "com.github.komputing.khex:extensions-jvm:$khex_version"
}

0 comments on commit 926bdeb

Please sign in to comment.