Skip to content

Commit 010c6a9

Browse files
committed
1.21.3
1 parent fc9f645 commit 010c6a9

File tree

5 files changed

+20
-3
lines changed

5 files changed

+20
-3
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,6 +131,7 @@ Please [help me][en-US] improve the quality of `en-US`.
131131
* [火凌之](https://github.com/PhoenixZeng)
132132
* [CppCXY](https://github.com/CppCXY)
133133
* [Ketho](https://github.com/Ketho)
134+
* [Folke Lemaitre](https://github.com/folke)
134135

135136
## Telemetry
136137

changelog.md

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

3+
## 1.21.3
4+
`2021-6-17`
5+
* `NEW` supports `untrusted workspaces`
6+
* `FIX` performance issues, thanks to [folke](https://github.com/folke)
7+
38
## 1.21.2
49
`2021-5-18`
510
* `FIX` loaded new file with ignored filename

package.json

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,17 @@
1010
"onCommand:extension.lua.doc"
1111
],
1212
"author": "sumneko",
13+
"capabilities": {
14+
"untrustedWorkspaces": {
15+
"description": "",
16+
"restrictedConfigurations": [
17+
"Lua.develop.enable",
18+
"Lua.runtime.plugin",
19+
"Lua.misc.parameters"
20+
],
21+
"supported": "limited"
22+
}
23+
},
1324
"categories": [
1425
"Linters",
1526
"Programming Languages",
@@ -1422,5 +1433,5 @@
14221433
"type": "git",
14231434
"url": "https://github.com/sumneko/lua-language-server"
14241435
},
1425-
"version": "1.21.2"
1436+
"version": "1.21.3"
14261437
}

package/build.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "1.21.2"
3+
local VERSION = "1.21.3"
44

55
local package = require 'package.package'
66
local fsu = require 'fs-utility'

server

0 commit comments

Comments
 (0)