From 440ca6360b896bd7a5f80dd70ab82cd0f9d9a1ab Mon Sep 17 00:00:00 2001 From: Mark Spanbroek Date: Wed, 29 Jun 2022 15:16:23 +0200 Subject: [PATCH] Version 0.2.0 Backwards incompatible because: - Raises EthersError instead of JsonRpcError - Nim 1.4.x no longer supported --- Readme.md | 2 +- ethers.nimble | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Readme.md b/Readme.md index 65f81e5..fc908e2 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.1.9 & < 0.2.0" +requires "ethers >= 0.2.0 & < 0.3.0" ``` Usage diff --git a/ethers.nimble b/ethers.nimble index eb3980f..a5730ba 100644 --- a/ethers.nimble +++ b/ethers.nimble @@ -1,4 +1,4 @@ -version = "0.1.9" +version = "0.2.0" author = "Nim Ethers Authors" description = "library for interacting with Ethereum" license = "MIT"