Skip to content

Commit 1246c70

Browse files
committed
2.0.5
1 parent 6c01925 commit 1246c70

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

changelog.md

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

3+
## 2.0.5
4+
`2021-7-1`
5+
* `NEW` `hover` and `completion` reports initialization progress
6+
* `CHG` `class field` consider implicit definition
7+
```lua
8+
---@class Class
9+
local mt = {}
10+
11+
function mt:init()
12+
self.xxx = 1
13+
end
14+
15+
function mt:func()
16+
print(self.xxx) -- self.xxx is defined
17+
end
18+
```
19+
* `CHG` improve performance
20+
* `FIX` [#580](https://github.com/sumneko/lua-language-server/issues/580)
21+
322
## 2.0.4
423
`2021-6-25`
524
* `FIX` [#550](https://github.com/sumneko/lua-language-server/issues/550)

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.4"
1408+
"version": "2.0.5"
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.4"
3+
local VERSION = "2.0.5"
44

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

server

0 commit comments

Comments
 (0)