Skip to content

Commit aa0ba81

Browse files
committed
Bump version to v0.2.2
1 parent 63cfe19 commit aa0ba81

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## v0.2.2 (2023-01-08)
44

55
### New features
66

README.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies in your `mix.exs` file:
2323
```elixir
2424
def deps do
2525
[
26-
{:ethers, "~> 0.2.1"},
26+
{:ethers, "~> 0.2.2"},
2727
# Uncomment next line if you want to use local signers
2828
# {:ex_secp256k1, "~> 0.7.2"}
2929
]
@@ -283,18 +283,23 @@ All contributions are very welcome (as simple as fixing typos). Please feel free
283283
push Pull Requests. Just remember to be respectful to everyone!
284284
285285
To run the tests locally, follow below steps:
286+
286287
- 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
288+
287289
```
288290
brew install ethereum
289291
npm install -g solc
290292
```
293+
291294
- Run [ganache](https://github.com/trufflesuite/ganache).
292-
After installing ganache, just run the following in a new window
295+
After installing ganache, just run the following in a new window
293296
294297
```
295298
> ganache --wallet.deterministic
296299
```
300+
297301
Then you should be able to run tests through `mix test`.
302+
298303
## Acknowledgements
299304
300305
Ethers was possible to make thanks to the great contributors of the following libraries.

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Ethers.MixProject do
22
use Mix.Project
33

4-
@version "0.2.1"
4+
@version "0.2.2"
55
@source_url "https://github.com/alisinabh/elixir_ethers"
66

77
def project do

0 commit comments

Comments
 (0)