Skip to content

Commit 045bf47

Browse files
committed
2.0.0
1 parent e1c0774 commit 045bf47

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

changelog.md

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

3+
## 2.0.0
4+
`2021-6-21`
5+
* `NEW` implement
6+
* `CHG` diagnostics `undefined-field`, `deprecated`: default by `Opened` instead of `None`
7+
* `CHG` setting `Lua.runtime.plugin`: default by `""` instead of `".vscode/lua/plugin.lua"` (for security)
8+
* `CHG` setting `Lua.intelliSense.searchDepth`: removed
9+
* `CHG` setting `Lua.misc.parameters`: `string array` instead of `string`
10+
* `CHG` setting `Lua.develop.enable`, `Lua.develop.debuggerPort`, `Lua.develop.debuggerWait`: removed, use `Lua.misc.parameters` instead
11+
* `FIX` [#441](https://github.com/sumneko/lua-language-server/issues/441)
12+
* `FIX` [#493](https://github.com/sumneko/lua-language-server/issues/493)
13+
* `FIX` [#531](https://github.com/sumneko/lua-language-server/issues/531)
14+
* `FIX` [#542](https://github.com/sumneko/lua-language-server/issues/542)
15+
* `FIX` [#543](https://github.com/sumneko/lua-language-server/issues/543)
16+
* `FIX` [#553](https://github.com/sumneko/lua-language-server/issues/553)
17+
* `FIX` [#562](https://github.com/sumneko/lua-language-server/issues/562)
18+
* `FIX` [#563](https://github.com/sumneko/lua-language-server/issues/563)
19+
320
## 1.21.3
421
`2021-6-17`
522
* `NEW` supports `untrusted workspaces`

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1405,5 +1405,5 @@
14051405
"type": "git",
14061406
"url": "https://github.com/sumneko/lua-language-server"
14071407
},
1408-
"version": "1.21.3"
1408+
"version": "2.0.0"
14091409
}

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.3"
3+
local VERSION = "2.0.0"
44

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

server

0 commit comments

Comments
 (0)