Skip to content

Commit

Permalink
Bump version to v0.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alisinabh committed Jan 9, 2024
1 parent 63cfe19 commit aa0ba81
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## v0.2.2 (2023-01-08)

### New features

Expand Down
9 changes: 7 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
]
Expand Down Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit aa0ba81

Please sign in to comment.