Skip to content

Commit

Permalink
docs: release notes for version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mirceanis committed Dec 17, 2019
1 parent 797bcd5 commit aa20d75
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
* 0.4.0
* feat - easy configuration with infuraProjectID ( #8 )
* feat - find networks by name after configuration ( #9 )

* 0.3.2
* build - bump kethereum to 0.76.2 ( 61d7582d )

Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@ Networks.registerNetwork(
)
)

//register all defaults using infura
//register all popular public networks using your infura project ID
Networks.registerAllNetworksWithInfura("<YOUR INFURA ID>")

//use testnet
val net = Networks.get("0x1234")

or
val net = Networks.get("local")

// override defaults
Networks.registerNetwork(
Networks.mainnet.copy(rpcUrl = "http://localhost:8545")
)

assertTrue(Networks.mainnet.rpcUrl == "http://localhost:8545")

```
Expand Down Expand Up @@ -92,7 +92,7 @@ allprojects {
In your module `build.gradle` file, add:

```groovy
def uport_kotlin_common_version = "0.3.2"
def uport_kotlin_common_version = "0.4.0"
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 @@ -19,7 +19,7 @@ buildscript {
kethereum_version = "0.76.2"
khex_version = "1.0.0-RC3"

current_release_version = "0.3.2"
current_release_version = "0.4.0"
}

repositories {
Expand Down

0 comments on commit aa20d75

Please sign in to comment.