Skip to content

Commit 79fafaa

Browse files
authored
release 0.12.1 (#177)
1 parent c4721af commit 79fafaa

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
## 0.12.1 - 2025-04-09
4+
* Add optional http request logs (https://github.com/mana-ethereum/ethereumex/pull/176)
5+
36
## 0.12.0 - 2025-03-04
47
* Make json library configurable (https://github.com/mana-ethereum/ethereumex/pull/169)
58

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Add `:ethereumex` to your list of dependencies in `mix.exs`:
1919
```elixir
2020
def deps do
2121
[
22-
{:ethereumex, "~> 0.12.0"},
22+
{:ethereumex, "~> 0.12.1"},
2323
# json library is configurable
2424
{:jason, "~> 1.4"}
2525
]
@@ -48,6 +48,7 @@ config :ethereumex,
4848

4949
`:pool_timeout` - This timeout is applied when we check out a connection from the pool. Default value is `5_000`.
5050
`:receive_timeout` - The maximum time to wait for a response before returning an error. Default value is `15_000`
51+
`:enable_request_error_logs` - Optional request error logs. Default value is false
5152

5253
### IPC
5354

mix.exs

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

44
@source_url "https://github.com/exthereum/ethereumex"
5-
@version "0.12.0"
5+
@version "0.12.1"
66

77
def project do
88
[

0 commit comments

Comments
 (0)