Skip to content

Commit

Permalink
Merge branch 'release/0.4.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis committed Mar 20, 2020
2 parents 39cc96a + 4ccfb8f commit 31c2556
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* 0.4.2
* fix - Expose internal dependencies as API to fix NoClassDefFound errors downstream ( 791c0aa7 )

* 0.4.1
* fix - okhttp dependency ( 4ac0e8d1 )( 4f2839f4 )

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ allprojects {
In your module `build.gradle` file, add:

```groovy
def uport_kotlin_common_version = "0.4.1"
def uport_kotlin_common_version = "0.4.2"
dependencies {
//...
// core lib
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ buildscript {
khex_version = "1.0.0-RC6"
khash_version = "1.0.0-RC5"

current_release_version = "0.4.1"
current_release_version = "0.4.2"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ dependencies {
api "com.squareup.okhttp3:okhttp:$okhttp_version"
api "com.github.komputing.khex:extensions:$khex_version"
api "com.github.komputing.kethereum:extensions_kotlin:$kethereum_version"
implementation "com.madgag.spongycastle:core:$spongycastle_version"
api "com.madgag.spongycastle:core:$spongycastle_version"

testImplementation "junit:junit:$junit_version"
testImplementation "com.willowtreeapps.assertk:assertk-jvm:$assertk_version"
Expand Down
10 changes: 5 additions & 5 deletions signer-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ dependencies {
api "com.github.komputing.khex:extensions:$khex_version"
api "com.github.komputing.kethereum:extensions_kotlin:$kethereum_version"
api "com.github.komputing.kethereum:model:$kethereum_version"
implementation "com.github.komputing.kethereum:extensions_transactions:$kethereum_version"
implementation "com.github.komputing.kethereum:crypto:$kethereum_version"
implementation "com.github.komputing.khash:sha256:$khash_version"
implementation "com.github.komputing.kethereum:crypto_impl_spongycastle:$kethereum_version"
implementation "com.madgag.spongycastle:core:$spongycastle_version"
api "com.github.komputing.kethereum:extensions_transactions:$kethereum_version"
api "com.github.komputing.kethereum:crypto:$kethereum_version"
api "com.github.komputing.khash:sha256:$khash_version"
api "com.github.komputing.kethereum:crypto_impl_spongycastle:$kethereum_version"
api "com.madgag.spongycastle:core:$spongycastle_version"


testImplementation "junit:junit:$junit_version"
Expand Down

0 comments on commit 31c2556

Please sign in to comment.