Skip to content

Commit 8c34886

Browse files
committed
relax elixir requirement
since we no longer build on 1.11 we don't have to watch out for elixir-lang/elixir#11110
1 parent 3611e5a commit 8c34886

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

apps/elixir_ls_debugger/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule ElixirLS.Debugger.Mixfile do
99
config_path: "../../config/config.exs",
1010
deps_path: "../../deps",
1111
lockfile: "../../mix.lock",
12-
elixir: ">= 1.12.3",
12+
elixir: ">= 1.12.0",
1313
build_embedded: false,
1414
start_permanent: true,
1515
build_per_environment: false,

apps/elixir_ls_utils/lib/minimum_version.ex

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ defmodule ElixirLS.Utils.MinimumVersion do
1111
end
1212

1313
def check_elixir_version do
14-
if Version.match?(System.version(), ">= 1.12.3") do
14+
if Version.match?(System.version(), ">= 1.12.0") do
1515
otp_release = String.to_integer(System.otp_release())
1616

1717
if Version.match?(System.version(), "< 1.13.0") and otp_release == 24 do
@@ -23,7 +23,7 @@ defmodule ElixirLS.Utils.MinimumVersion do
2323
end
2424
else
2525
{:error,
26-
"Elixir versions below 1.12.3 are not supported. (Currently running v#{System.version()})"}
26+
"Elixir versions below 1.12.0 are not supported. (Currently running v#{System.version()})"}
2727
end
2828
end
2929
end

apps/elixir_ls_utils/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ defmodule ElixirLS.Utils.Mixfile do
1010
deps_path: "../../deps",
1111
elixirc_paths: elixirc_paths(Mix.env()),
1212
lockfile: "../../mix.lock",
13-
elixir: ">= 1.12.3",
13+
elixir: ">= 1.12.0",
1414
build_embedded: false,
1515
start_permanent: false,
1616
build_per_environment: false,

apps/language_server/mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ defmodule ElixirLS.LanguageServer.Mixfile do
55
[
66
app: :language_server,
77
version: "0.12.0",
8-
elixir: ">= 1.12.3",
8+
elixir: ">= 1.12.0",
99
build_path: "../../_build",
1010
config_path: "../../config/config.exs",
1111
deps_path: "../../deps",

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ defmodule ElixirLS.Mixfile do
99
start_permanent: Mix.env() == :prod,
1010
build_per_environment: false,
1111
deps: deps(),
12-
elixir: ">= 1.12.3",
12+
elixir: ">= 1.12.0",
1313
dialyzer: [
1414
plt_add_apps: [:dialyxir_vendored, :debugger, :dialyzer, :ex_unit],
1515
flags: [

0 commit comments

Comments
 (0)