version 0.9.0
This is a breaking change. Contract functions can no longer be defined to return ?TransactionResponse, use Confirmable as the return type instead.
This commit is contained in:
parent
17c6e9a8c5
commit
e15974eb1f
|
@ -14,7 +14,7 @@ Use the [Nimble][2] package manager to add `ethers` to an existing
|
|||
project. Add the following to its .nimble file:
|
||||
|
||||
```nim
|
||||
requires "ethers >= 0.8.0 & < 0.9.0"
|
||||
requires "ethers >= 0.9.0 & < 0.10.0"
|
||||
```
|
||||
|
||||
Usage
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
author = "Nim Ethers Authors"
|
||||
description = "library for interacting with Ethereum"
|
||||
license = "MIT"
|
||||
|
|
Loading…
Reference in New Issue