Skip to content

Commit

Permalink
version 0.5.0
Browse files Browse the repository at this point in the history
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`.
  • Loading branch information
emizzle committed Jul 24, 2023
1 parent 12d7a35 commit 9f4f762
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion ethers.nimble
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version = "0.4.0"
version = "0.5.0"
author = "Nim Ethers Authors"
description = "library for interacting with Ethereum"
license = "MIT"
Expand Down

0 comments on commit 9f4f762

Please sign in to comment.