diff --git a/CHANGELOG.md b/CHANGELOG.md index 51d40ca..1a54990 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # CHANGELOG +## v0.6.0 (2026-08-22) + +### Breaking changes + + * Require Req 0.7 or higher + +### Improvements + + * Latch now defines its own Finch pool, with the option to override it. + * Configure `receive_timeout` on `Latch.query`, `Latch.procedure` and `Latch.upload_blob`. + ## v0.5.0 (2026-08-02) * Breaking change: `client_id` and `redirect_uri` are replaced with `client_id_path`, `redirect_uri_path`, and `base_url_fun`, with the latter dynamically building the base URL, eg `&MyAppWeb.Endpoint.url/0`. diff --git a/README.md b/README.md index ef1fdae..97e628d 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ It comes with DPoP nonce caching built-in, which cuts down on round-trips over m ```elixir def deps do [ - {:latch, "~> 0.5.0"} + {:latch, "~> 0.6.0"} ] end ``` diff --git a/mix.exs b/mix.exs index 4f793d9..7004575 100644 --- a/mix.exs +++ b/mix.exs @@ -4,7 +4,7 @@ defmodule Latch.MixProject do def project do [ app: :latch, - version: "0.5.0", + version: "0.6.0", elixir: "~> 1.17", start_permanent: Mix.env() == :prod, deps: deps(),