Skip to content

Commit 3a6b37f

Browse files
committed
1.18.1
1 parent 94a33bc commit 3a6b37f

File tree

4 files changed

+11
-5
lines changed

4 files changed

+11
-5
lines changed

changelog.md

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

3+
## 1.18.1
4+
`2021-3-10`
5+
* `CHG` semantic-tokens: improve colors of `const` and `close`
6+
* `CHG` type-formating: improve execution conditions
7+
* `FIX` [#444](https://github.com/sumneko/lua-language-server/issues/444)
8+
39
## 1.18.0
410
`2021-3-9`
511
* `NEW` `LuaDoc`: supports `---@diagnostic disable`

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1171,10 +1171,10 @@
11711171
"variable": [
11721172
"variable.other.lua"
11731173
],
1174-
"variable.static": [
1174+
"variable.abstract": [
11751175
"variable.other.constant.lua"
11761176
],
1177-
"variable.abstract": [
1177+
"variable.static": [
11781178
"variable.other.constant.lua"
11791179
]
11801180
}
@@ -1200,5 +1200,5 @@
12001200
"type": "git",
12011201
"url": "https://github.com/sumneko/lua-language-server"
12021202
},
1203-
"version": "1.18.0"
1203+
"version": "1.18.1"
12041204
}

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

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

server

0 commit comments

Comments
 (0)