From 81f598aea16aa39318de4da6959800b0fefe73c7 Mon Sep 17 00:00:00 2001 From: Parker Selbert Date: Mon, 6 Jan 2025 22:35:24 +0000 Subject: [PATCH] Include :mix in plt apps for dialyzer --- mix.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mix.exs b/mix.exs index 42e056f1..9c1d4202 100644 --- a/mix.exs +++ b/mix.exs @@ -2,7 +2,7 @@ defmodule Oban.MixProject do use Mix.Project @source_url "https://github.com/oban-bg/oban" - @version "2.18.2" + @version "2.19.0-dev" def project do [ @@ -29,7 +29,7 @@ defmodule Oban.MixProject do # Dialyzer dialyzer: [ - plt_add_apps: [:ex_unit, :postgrex], + plt_add_apps: [:ex_unit, :mix, :postgrex], plt_core_path: "_build/#{Mix.env()}", flags: [:error_handling, :missing_return, :underspecs] ],