diff --git a/CHANGELOG.md b/CHANGELOG.md index b30e5bd8b..9b3ca14f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ ### Unreleased +### v0.15.1: 29 June 2023 + +#### Improvements + +- This is the first release supporting OTP 26. Unfortunately due to bugs in OTP only 26.0.2+ is supported. See [886](https://github.com/elixir-lsp/elixir-ls/issues/886) and [923](https://github.com/elixir-lsp/elixir-ls/pull/923) for details + +#### Fixes + +- Fixed crash when handling `workspace/didChangeWatchedFiles` when `project_dir` not yet set +- ExUnit test tracer is now under build lock. This should fix crashes due tu race conditions +- Fixed completion of remote calls matching locals without parens (e.g. `Map.drop` when `drop` is local without parens from `ecto_sql`) [Milo Lee](https://github.com/oo6) + ### v0.15.0: 20 June 2023 #### Improvements diff --git a/README.md b/README.md index 5825ed615..9bb02bbdd 100644 --- a/README.md +++ b/README.md @@ -111,7 +111,8 @@ ElixirLS generally aims to support the last 3 released versions of Elixir and th | 23 | 1.13 - 1.14 | Yes | None | | 24 | 1.13 - 1.15 | Yes | None | | 25 | 1.13.4 - 1.15 | Yes | None | -| 26 | any | No | [#886](https://github.com/elixir-lsp/elixir-ls/issues/886) | +| 26.0.0 - 26.0.1 | any | No | [#886](https://github.com/elixir-lsp/elixir-ls/issues/886) | +| >= 26.0.2 | 1.14.5 - 1.15 | Yes | None | ### Version management diff --git a/VERSION b/VERSION index a55105169..e815b861f 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.15.0 +0.15.1