From e15974eb1f0ef3b7ed50b6f6529244d6047229d0 Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Tue, 21 May 2024 13:26:41 +0200 Subject: [PATCH] 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. --- Readme.md | 2 +- ethers.nimble | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 6896eca..2581e2b 100644 --- a/Readme.md +++ b/Readme.md @@ -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 diff --git a/ethers.nimble b/ethers.nimble index df724fe..819577c 100644 --- a/ethers.nimble +++ b/ethers.nimble @@ -1,4 +1,4 @@ -version = "0.8.0" +version = "0.9.0" author = "Nim Ethers Authors" description = "library for interacting with Ethereum" license = "MIT"