Skip to content

Commit bb7e16c

Browse files
committed
bump version
1 parent 89b03ba commit bb7e16c

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
### Unreleased
22

3+
### v0.29.1: 5 August 2025
4+
5+
#### Improvements
6+
7+
- ElixirLS updated to [v0.29.1](https://github.com/elixir-lsp/elixir-ls/blob/master/CHANGELOG.md#v0291)
8+
- Added settings controlling builtin MCP server
9+
310
### v0.29.0: 4 August 2025
411

512
#### Highlights

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"author": "The Elixir community",
1212
"license": "MIT",
1313
"publisher": "JakeBecker",
14-
"version": "0.29.0",
14+
"version": "0.29.1",
1515
"engines": {
1616
"vscode": "^1.95.0"
1717
},
@@ -229,6 +229,18 @@
229229
"type": "string",
230230
"description": "Path to a custom .formatter.exs file used when formatting documents",
231231
"minLength": 0
232+
},
233+
"elixirLS.mcpEnabled": {
234+
"scope": "resource",
235+
"type": "boolean",
236+
"description": "Enable or disable the MCP server",
237+
"default": true
238+
},
239+
"elixirLS.mcpPort": {
240+
"scope": "resource",
241+
"type": "integer",
242+
"description": "Set a specific port for the MCP server. If not set, uses `3789 + hash(workspace_path)` for predictable port assignment per workspace",
243+
"default": 0
232244
}
233245
}
234246
},

0 commit comments

Comments
 (0)