Skip to content

Commit 9b10512

Browse files
authored
Merge pull request #1251 from jstr/fix/issue-1250
Update support matrix, mix Elixir version to >= 1.15
2 parents 1fcc2fe + 3a2fec0 commit 9b10512

3 files changed

Lines changed: 8 additions & 9 deletions

File tree

‎README.md‎

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -123,14 +123,13 @@ ElixirLS generally aims to support all supported versions of Elixir on all compa
123123
| any | 1.10 | No | Latest release not compatible. Last version known to work v0.10.0 |
124124
| any | 1.11 | No | Latest release not compatible. Last version known to work v0.12.0 |
125125
| any | 1.12 | No | Latest release not compatible. Last version known to work v0.23.0 |
126-
| 22 - 25 | 1.13 | Unknown | Latest release may still work but no longer supported, Last version known to work v0.26.4 |
127-
| 23 - 26 | 1.14 | Unknown | Latest release may still work but no longer supported, Last version known to work v0.29.3 |
128-
| 23 | 1.14 | Yes | None |
129-
| 24 | 1.14 - 1.16 | Yes | None |
130-
| 25 | 1.14 - 1.18 | Yes | None |
126+
| 22 - 25 | 1.13 | No | Latest release not compatible. Last version known to work v0.26.4 |
127+
| 23 - 26 | 1.14 | No | Latest release not compatible. Last version known to work v0.29.3 |
128+
| 24 | 1.15 - 1.16 | Yes | None |
129+
| 25 | 1.15 - 1.18 | Yes | None |
131130
| 26.0.0 - 26.0.1 | any | No | [#886](https://github.com/elixir-lsp/elixir-ls/issues/886) |
132-
| 26.0.2 - 26.1.2 | 1.14.5 - 1.18 | *nix only | [#927](https://github.com/elixir-lsp/elixir-ls/issues/927), [#1023](https://github.com/elixir-lsp/elixir-ls/issues/1023) |
133-
| >= 26.2.0 | 1.14.5 - 1.18 | Yes | None |
131+
| 26.0.2 - 26.1.2 | 1.15 - 1.18 | *nix only | [#927](https://github.com/elixir-lsp/elixir-ls/issues/927), [#1023](https://github.com/elixir-lsp/elixir-ls/issues/1023) |
132+
| >= 26.2.0 | 1.15 - 1.18 | Yes | None |
134133
| any | 1.15.5 | Yes | Broken formatter [#975](https://github.com/elixir-lsp/elixir-ls/issues/975) |
135134
| 27 | 1.17 - 1.18 | Yes | None |
136135
| 28 | 1.18.4 | Unknown | Elixir retracted support for OTP 28 in 1.18, Latest release may work but is not supported |

‎apps/language_server/mix.exs‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ defmodule ElixirLS.LanguageServer.MixProject do
1515
[
1616
app: :language_server,
1717
version: @version,
18-
elixir: ">= 1.13.0",
18+
elixir: ">= 1.15.0",
1919
build_path: "../../_build",
2020
config_path: "../../config/config.exs",
2121
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.13.0",
12+
elixir: ">= 1.15.0",
1313
dialyzer: [
1414
plt_add_apps: [:dialyxir_vendored, :debugger, :dialyzer, :ex_unit, :hex, :mix],
1515
flags: [

0 commit comments

Comments
 (0)