File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Expand file tree Collapse file tree 3 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3- ## Unreleased
3+ ## v0.6.1 (2025-01-02)
44
55### Bug Fixes
66
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ dependencies in your `mix.exs` file:
2323``` elixir
2424def 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
3737Version 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
4444Key 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 )
Original file line number Diff line number Diff line change 11defmodule 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
You can’t perform that action at this time.
0 commit comments