Skip to content

Commit

Permalink
Merge branch 'release/0.3.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis committed Sep 16, 2019
2 parents b94cab9 + 4b6e770 commit 9d10ddb
Show file tree
Hide file tree
Showing 20 changed files with 757 additions and 282 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
* 0.3.0
* refactor - replace moshi with kotlinx.serialization ( #6 )
* feature - add ethChainId ( f658925f )
* feature - throw more specific JsonRpcInvalidArgumentException ( a79b3a01 )

* 0.2.0
* update to kethereum 0.76.1 [#5](https://github.com/uport-project/kotlin-common/pull/5)
* [breaking] isolate implementation details for each module (#5)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ allprojects {
In your module `build.gradle` file, add:

```groovy
def uport_kotlin_common_version = "0.2.0"
def uport_kotlin_common_version = "0.3.0"
dependencies {
//...
// core lib
Expand Down
3 changes: 1 addition & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,14 @@ buildscript {
detekt_version = "1.0.0-RC14"
jacoco_version = "0.8.4"

moshi_version = "1.8.0"
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.2.0"
current_release_version = "0.3.0"
}

repositories {
Expand Down
5 changes: 3 additions & 2 deletions jsonrpc/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ apply plugin: "java-library"
apply plugin: "kotlin"
apply plugin: "maven"
apply plugin: "com.jfrog.bintray"
apply plugin: "kotlinx-serialization"

project.ext.description = "wrappers for calling ethereum endpoints using json-rpc"

Expand All @@ -14,8 +15,7 @@ compileKotlin {
dependencies {
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"

implementation "com.squareup.moshi:moshi-kotlin:$moshi_version"
implementation "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"
Expand All @@ -25,4 +25,5 @@ dependencies {
testImplementation "junit:junit:$junit_version"
testImplementation "com.willowtreeapps.assertk:assertk-jvm:$assertk_version"
testImplementation "io.mockk:mockk:$mockk_version"
testImplementation project(":test-helpers")
}
Loading

0 comments on commit 9d10ddb

Please sign in to comment.