From ad164dbcaba2e066b6bc1c6ef8ace20d6eeaebcb Mon Sep 17 00:00:00 2001 From: lostbean Date: Tue, 16 Jun 2026 21:20:25 -0300 Subject: [PATCH] chore: update toolchain and dependencies Bump the Elixir version constraint to ~> 1.20 to match the Nix flake's toolchain (Elixir 1.20.1 / OTP 28). Dependencies and flake inputs were re-resolved and confirmed already at their latest published versions, so mix.lock and flake.lock are unchanged. Verified inside the flake dev shell: - mix compile --warnings-as-errors --force (zero warnings) - mix format --check-formatted - mix credo --strict (no issues) - mix test (230 passed, 8 integration excluded) - mix dialyzer (0 errors) --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 41abdc3..1276154 100644 --- a/mix.exs +++ b/mix.exs @@ -8,7 +8,7 @@ defmodule AgentObs.MixProject do [ app: :agent_obs, version: @version, - elixir: "~> 1.18", + elixir: "~> 1.20", start_permanent: Mix.env() == :prod, deps: deps(), description: description(),