diff --git a/CHANGELOG.md b/CHANGELOG.md index e28751a..7d3d39f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## v0.2.2 (2023-01-08) ### New features diff --git a/README.md b/README.md index d6066f3..2fb18be 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ dependencies in your `mix.exs` file: ```elixir def deps do [ - {:ethers, "~> 0.2.1"}, + {:ethers, "~> 0.2.2"}, # Uncomment next line if you want to use local signers # {:ex_secp256k1, "~> 0.7.2"} ] @@ -283,18 +283,23 @@ All contributions are very welcome (as simple as fixing typos). Please feel free push Pull Requests. Just remember to be respectful to everyone! To run the tests locally, follow below steps: + - Install [ethereum](https://geth.ethereum.org/docs/getting-started/installing-geth) and [solc](https://docs.soliditylang.org/en/latest/installing-solidity.html). For example, on MacOS + ``` brew install ethereum npm install -g solc ``` + - Run [ganache](https://github.com/trufflesuite/ganache). -After installing ganache, just run the following in a new window + After installing ganache, just run the following in a new window ``` > ganache --wallet.deterministic ``` + Then you should be able to run tests through `mix test`. + ## Acknowledgements Ethers was possible to make thanks to the great contributors of the following libraries. diff --git a/mix.exs b/mix.exs index 6b26b35..84331cf 100644 --- a/mix.exs +++ b/mix.exs @@ -1,7 +1,7 @@ defmodule Ethers.MixProject do use Mix.Project - @version "0.2.1" + @version "0.2.2" @source_url "https://github.com/alisinabh/elixir_ethers" def project do