Skip to content

Commit dc3ffdc

Browse files
authored
chore: bump ElixirLS to v0.14.6 (#97)
1 parent 924e79b commit dc3ffdc

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ elixir.setup {
102102
-- specify a repository and branch
103103
repo = "mhanberg/elixir-ls", -- defaults to elixir-lsp/elixir-ls
104104
branch = "mh/all-workspace-symbols", -- defaults to nil, just checkouts out the default branch, mutually exclusive with the `tag` option
105-
tag = "v0.13.0", -- defaults to nil, mutually exclusive with the `branch` option
105+
tag = "v0.14.6", -- defaults to nil, mutually exclusive with the `branch` option
106106

107107
-- alternatively, point to an existing elixir-ls installation (optional)
108108
-- not currently supported by elixirls, but can be a table if you wish to pass other args `{"path/to/elixirls", "--foo"}`

lua/elixir/elixirls/init.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ local Utils = require("elixir.utils")
99
local capabilities = vim.lsp.protocol.make_client_capabilities()
1010
capabilities.textDocument.completion.completionItem.snippetSupport = true
1111

12-
local default_install_tag = "tags/v0.13.0"
12+
local default_install_tag = "tags/v0.14.6"
1313

1414
local elixir_nvim_output_bufnr
1515

tests/download_spec.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ describe("download", function()
4242
it("can checkout a different tag", function()
4343
local download_dir = "tmp/downloads"
4444

45-
local result = Download.clone(download_dir, { repo = "elixir-lsp/elixir-ls", ref = "tags/v0.13.0" })
45+
local result = Download.clone(download_dir, { repo = "elixir-lsp/elixir-ls", ref = "tags/v0.14.6" })
4646

47-
eq("elixir-lsp/elixir-ls/tags_v0.13.0", result)
48-
assert.True(Path:new(download_dir, "elixir-lsp/elixir-ls/tags_v0.13.0", "mix.exs"):exists())
47+
eq("elixir-lsp/elixir-ls/tags_v0.14.6", result)
48+
assert.True(Path:new(download_dir, "elixir-lsp/elixir-ls/tags_v0.14.6", "mix.exs"):exists())
4949
end)
5050
end)

0 commit comments

Comments
 (0)