Skip to content

Commit 155916c

Browse files
committed
2.0.2
1 parent a38fb17 commit 155916c

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

changelog.md

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

3+
## 2.0.2
4+
`2021-6-23`
5+
* `NEW` supports literal table in `pairs`
6+
```lua
7+
local t = { a = 1, b = 2, c = 3 }
8+
for k, v in pairs(t) do
9+
-- `k` is string and `v` is integer here
10+
end
11+
```
12+
* `CHG` view `local f ---@type fun(x:number):boolean`
13+
```lua
14+
---before
15+
function f(x: number)
16+
-> boolean
17+
---after
18+
local f: fun(x: number): boolean
19+
```
20+
* `FIX` [#558](https://github.com/sumneko/lua-language-server/issues/558)
21+
* `FIX` [#567](https://github.com/sumneko/lua-language-server/issues/567)
22+
* `FIX` [#568](https://github.com/sumneko/lua-language-server/issues/568)
23+
* `FIX` [#570](https://github.com/sumneko/lua-language-server/issues/570)
24+
* `FIX` [#571](https://github.com/sumneko/lua-language-server/issues/571)
25+
326
## 2.0.1
427
`2021-6-21`
528
* `FIX` [#566](https://github.com/sumneko/lua-language-server/issues/566)

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": "2.0.1"
1408+
"version": "2.0.2"
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 = "2.0.1"
3+
local VERSION = "2.0.2"
44

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

server

0 commit comments

Comments
 (0)