Skip to content

Commit 770858c

Browse files
committed
2.5.4
1 parent 6e48ce4 commit 770858c

File tree

5 files changed

+11
-4
lines changed

5 files changed

+11
-4
lines changed

changelog.md

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

3+
## 2.5.4
4+
`2021-12-16`
5+
* `FIX` [#847](https://github.com/sumneko/lua-language-server/issues/847)
6+
* `FIX` [#848](https://github.com/sumneko/lua-language-server/issues/848)
7+
* `FIX` completion: incorrect cache
8+
* `FIX` hover: always view string
9+
310
## 2.5.3
411
`2021-12-6`
512
* `FIX` [#842](https://github.com/sumneko/lua-language-server/issues/844)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1588,5 +1588,5 @@
15881588
"type": "git",
15891589
"url": "https://github.com/sumneko/lua-language-server"
15901590
},
1591-
"version": "2.5.3"
1591+
"version": "2.5.4"
15921592
}

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

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

publish.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ end
7979

8080
local function runTest(root)
8181
local ext = platform.OS == 'Windows' and '.exe' or ''
82-
local exe = root / 'bin' / platform.OS / 'lua-language-server' .. ext
82+
local exe = root / 'bin' / 'lua-language-server' .. ext
8383
local test = root / 'test.lua'
8484
local lua = subprocess.spawn {
8585
exe,

server

0 commit comments

Comments
 (0)