version 0.5.0

Breaking change:
`Filter` has been changed to `EventFilter` to be inline with ethers.js. `Filter` is used for creating subscriptions in `nim-ethers`. All previously-created instances of `Filter` in your consuming application code should be changed to `EventFilter`.
This commit is contained in:
Eric 2023-07-24 15:54:18 +10:00
parent 12d7a35203
commit 9f4f762e21
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View File

@ -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.4.0 & < 0.5.0"
requires "ethers >= 0.5.0 & < 0.6.0"
```
Usage

View File

@ -1,4 +1,4 @@
version = "0.4.0"
version = "0.5.0"
author = "Nim Ethers Authors"
description = "library for interacting with Ethereum"
license = "MIT"