From 1bedfd3a933875c3734f0a9fab63111df5be0e67 Mon Sep 17 00:00:00 2001 From: feld <40271278+feld@users.noreply.github.com> Date: Thu, 9 Sep 2021 02:33:29 -0500 Subject: [PATCH] Update minimum elixir version to 1.11 (#1310) Required by the use of config_env() in config/config.exs --- mix.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mix.exs b/mix.exs index 825a53b9..d385413d 100644 --- a/mix.exs +++ b/mix.exs @@ -5,7 +5,7 @@ defmodule Plausible.MixProject do [ app: :plausible, version: System.get_env("APP_VERSION", "0.0.1"), - elixir: "~> 1.10", + elixir: "~> 1.11", elixirc_paths: elixirc_paths(Mix.env()), compilers: [:phoenix, :gettext] ++ Mix.compilers(), start_permanent: Mix.env() == :prod, -- GitLab