Skip to content

Commit 0a99433

Browse files
committed
Release 0.6.1
1 parent 916d2d4 commit 0a99433

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## v0.6.1 (2025-01-02)
44

55
### Bug Fixes
66

README.md

+6-5
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.6.0"},
26+
{:ethers, "~> 0.6.1"},
2727
# Uncomment next line if you want to use local signers
2828
# {:ex_secp256k1, "~> 0.7.2"}
2929
]
@@ -36,17 +36,18 @@ The complete documentation is available on [hexdocs](https://hexdocs.pm/ethers).
3636

3737
Version 0.6.x introduces some breaking changes to improve type safety and explicitness:
3838

39-
* All inputs to functions now require native Elixir types (e.g. integers) instead of hex strings
40-
* Gas limits must be set explicitly rather than estimated automatically for all calls
41-
* Transaction struct has been split into separate EIP-1559 and Legacy types
42-
* Some functions have been deprecated or moved - see below
39+
- All inputs to functions now require native Elixir types (e.g. integers) instead of hex strings
40+
- Gas limits must be set explicitly rather than estimated automatically for all calls
41+
- Transaction struct has been split into separate EIP-1559 and Legacy types
42+
- Some functions have been deprecated or moved - see below
4343

4444
Key function changes:
4545

4646
- Use `Ethers.send_transaction/2` instead of `Ethers.send/2`
4747
- Use `Ethers.Transaction.from_rpc_map/1` instead of `from_map/1`
4848
- Specify gas limits explicitly instead of using `maybe_add_gas_limit/2`
4949
- Use `type` instead of `tx_type` in transaction overrides, with explicit struct modules:
50+
5051
```elixir
5152
# Before
5253
Ethers.send_transaction(tx, tx_type: :eip1559)

mix.exs

+1-1
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.6.0"
4+
@version "0.6.1"
55
@source_url "https://github.com/ExWeb3/elixir_ethers"
66

77
def project do

0 commit comments

Comments
 (0)