Skip to content

Commit e904cd8

Browse files
committed
1.6.0
1 parent 0d8c38c commit e904cd8

File tree

5 files changed

+18
-3
lines changed

5 files changed

+18
-3
lines changed

README.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
# lua-language-server
22

33

4+
![version](https://vsmarketplacebadge.apphb.com/version-short/sumneko.lua.svg)
5+
![installs](https://vsmarketplacebadge.apphb.com/installs-short/sumneko.lua.svg)
6+
![downloads](https://vsmarketplacebadge.apphb.com/downloads-short/sumneko.lua.svg)
47

58
## Install In VSCode
69
https://marketplace.visualstudio.com/items?itemName=sumneko.lua

changelog.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# changelog
22

3+
## 1.6.0
4+
`2020-12-14`
5+
* `NEW` completion: auto require local modules
6+
* `NEW` completion: support delegate
7+
* `NEW` hover: show function by keyword `function`
8+
* `NEW` code action: swap params
9+
* `CHG` standalone: unbind the relative path between binaries and scripts
10+
* `CHG` hover: `LuaDoc` also catchs `--` (no need `---`)
11+
* `CHG` rename: support doc
12+
* `CHG` completion: keyword considers expression
13+
* `FIX` [#297](https://github.com/sumneko/lua-language-server/issues/297)
14+
315
## 1.5.0
416
`2020-12-5`
517
* `NEW` setting `runtime.unicodeName`

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -663,5 +663,5 @@
663663
"type": "git",
664664
"url": "https://github.com/sumneko/lua-language-server"
665665
},
666-
"version": "1.5.0"
666+
"version": "1.6.0"
667667
}

package/build.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
local json = require 'json-beautify'
22

3-
local VERSION = "1.5.0"
3+
local VERSION = "1.6.0"
44

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

server

0 commit comments

Comments
 (0)