Skip to content

Commit fd32102

Browse files
committed
3.6.1
1 parent 5c1ffdd commit fd32102

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

changelog.md

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

3+
## 3.6.1
4+
`2022-11-8`
5+
* `FIX` wrong diagnostics for `pcall` and `xpcall`
6+
* `FIX` duplicate fields in table hover
7+
* `FIX` description disapeared for overloaded function
8+
* `FIX` [#1675]
9+
10+
[#1675]: https://github.com/sumneko/lua-language-server/issues/1675
11+
312
## 3.6.0
13+
`2022-11-8`
414
* `NEW` supports `private`/`protected`/`public`/`package`
515
* mark in `doc.field`
616
```lua
@@ -163,6 +173,7 @@ server will generate `doc.json` and `doc.md` in `LOGPATH`.
163173

164174
[#1153]: https://github.com/sumneko/lua-language-server/issues/1153
165175
[#1177]: https://github.com/sumneko/lua-language-server/issues/1177
176+
[#1201]: https://github.com/sumneko/lua-language-server/issues/1201
166177
[#1202]: https://github.com/sumneko/lua-language-server/issues/1202
167178
[#1332]: https://github.com/sumneko/lua-language-server/issues/1332
168179
[#1344]: https://github.com/sumneko/lua-language-server/issues/1344

client/3rd/vscode-lua-doc

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3072,5 +3072,5 @@
30723072
"sponsor": {
30733073
"url": "https://github.com/sumneko/lua-language-server/issues/484"
30743074
},
3075-
"version": "3.6.0"
3075+
"version": "3.6.1"
30763076
}

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 = "3.6.0"
3+
local VERSION = "3.6.1"
44

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

server

0 commit comments

Comments
 (0)