Skip to content

Commit

Permalink
Merge branch 'release/0.3.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis committed Sep 18, 2019
2 parents 9d10ddb + 18677fa commit 725bf6b
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 15 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* 0.3.1
* refactor - simplify imports, using lowercase coordinates for komputing libs ( 6a827d05 )

* 0.3.0
* refactor - replace moshi with kotlinx.serialization ( #6 )
* feature - add ethChainId ( f658925f )
Expand Down
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,10 @@ buildscript {
okhttp_version = "3.14.1"

spongycastle_version = "1.58.0.0"
kmnid_version = "0.4.0"
kethereum_version = "0.76.1"
khex_version = "1.0.0-RC3"

current_release_version = "0.3.0"
current_release_version = "0.3.1"
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies {
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"

implementation "com.squareup.okhttp3:okhttp:$okhttp_version"
implementation "com.github.komputing.KHex:extensions-jvm:$khex_version"
api "com.github.komputing.khex:extensions-jvm:$khex_version"
implementation "com.madgag.spongycastle:core:$spongycastle_version"

testImplementation "junit:junit:$junit_version"
Expand Down
8 changes: 4 additions & 4 deletions jsonrpc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ compileKotlin {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$kotlin_serialization_version"
api "org.jetbrains.kotlinx:kotlinx-serialization-runtime:$kotlin_serialization_version"

implementation "com.github.komputing.KEthereum:extensions:$kethereum_version"
implementation "com.github.komputing.KHex:extensions-jvm:$khex_version"
api "com.github.komputing.kethereum:extensions:$kethereum_version"
api "com.github.komputing.khex:extensions-jvm:$khex_version"

implementation project(":core")
api project(":core")

testImplementation "junit:junit:$junit_version"
testImplementation "com.willowtreeapps.assertk:assertk-jvm:$assertk_version"
Expand Down
16 changes: 8 additions & 8 deletions signer-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@ dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"

implementation project(":core")
implementation "com.github.komputing.KHex:extensions-jvm:$khex_version"
implementation "com.github.komputing.KEthereum:extensions:$kethereum_version"
implementation "com.github.komputing.KEthereum:functions:$kethereum_version"
implementation "com.github.komputing.KEthereum:crypto:$kethereum_version"
implementation "com.github.komputing.KEthereum:model:$kethereum_version"
implementation "com.github.komputing.KEthereum:hashes:$kethereum_version"
api project(":core")
api "com.github.komputing.khex:extensions-jvm:$khex_version"
api "com.github.komputing.kethereum:extensions:$kethereum_version"
api "com.github.komputing.kethereum:model:$kethereum_version"
implementation "com.github.komputing.kethereum:functions:$kethereum_version"
implementation "com.github.komputing.kethereum:crypto:$kethereum_version"
implementation "com.github.komputing.kethereum:hashes:$kethereum_version"
implementation "com.github.komputing.kethereum:crypto_impl_spongycastle:$kethereum_version"
implementation "com.madgag.spongycastle:core:$spongycastle_version"
implementation "com.github.komputing.KEthereum:crypto_impl_spongycastle:$kethereum_version"


testImplementation "junit:junit:$junit_version"
Expand Down

0 comments on commit 725bf6b

Please sign in to comment.