Update minimum elixir version to 1.11 (#1310)

Required by the use of config_env() in config/config.exs
This commit is contained in:
feld 2021-09-09 02:33:29 -05:00 committed by GitHub
parent 700a65c98a
commit 1bedfd3a93
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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,