File tree 3 files changed +8
-7
lines changed
3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
- ## Unreleased
3
+ ## v0.6.1 (2025-01-02)
4
4
5
5
### Bug Fixes
6
6
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ dependencies in your `mix.exs` file:
23
23
``` elixir
24
24
def deps do
25
25
[
26
- {:ethers , " ~> 0.6.0 " },
26
+ {:ethers , " ~> 0.6.1 " },
27
27
# Uncomment next line if you want to use local signers
28
28
# {:ex_secp256k1, "~> 0.7.2"}
29
29
]
@@ -36,17 +36,18 @@ The complete documentation is available on [hexdocs](https://hexdocs.pm/ethers).
36
36
37
37
Version 0.6.x introduces some breaking changes to improve type safety and explicitness:
38
38
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
43
43
44
44
Key function changes:
45
45
46
46
- Use ` Ethers.send_transaction/2 ` instead of ` Ethers.send/2 `
47
47
- Use ` Ethers.Transaction.from_rpc_map/1 ` instead of ` from_map/1 `
48
48
- Specify gas limits explicitly instead of using ` maybe_add_gas_limit/2 `
49
49
- Use ` type ` instead of ` tx_type ` in transaction overrides, with explicit struct modules:
50
+
50
51
``` elixir
51
52
# Before
52
53
Ethers .send_transaction (tx, tx_type: :eip1559 )
Original file line number Diff line number Diff line change 1
1
defmodule Ethers.MixProject do
2
2
use Mix.Project
3
3
4
- @ version "0.6.0 "
4
+ @ version "0.6.1 "
5
5
@ source_url "https://github.com/ExWeb3/elixir_ethers"
6
6
7
7
def project do
You can’t perform that action at this time.
0 commit comments