From 770858ca66c23a401311bc187a5cc90d85f11823 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=80=E8=90=8C=E5=B0=8F=E6=B1=90?= <sumneko@hotmail.com> Date: Fri, 17 Dec 2021 15:12:46 +0800 Subject: [PATCH] 2.5.4 --- changelog.md | 7 +++++++ package.json | 2 +- package/build.lua | 2 +- publish.lua | 2 +- server | 2 +- 5 files changed, 11 insertions(+), 4 deletions(-) diff --git a/changelog.md b/changelog.md index 9a729ca..7946977 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # changelog +## 2.5.4 +`2021-12-16` +* `FIX` [#847](https://github.com/sumneko/lua-language-server/issues/847) +* `FIX` [#848](https://github.com/sumneko/lua-language-server/issues/848) +* `FIX` completion: incorrect cache +* `FIX` hover: always view string + ## 2.5.3 `2021-12-6` * `FIX` [#842](https://github.com/sumneko/lua-language-server/issues/844) diff --git a/package.json b/package.json index b4d7417..fa16c0d 100644 --- a/package.json +++ b/package.json @@ -1588,5 +1588,5 @@ "type": "git", "url": "https://github.com/sumneko/lua-language-server" }, - "version": "2.5.3" + "version": "2.5.4" } diff --git a/package/build.lua b/package/build.lua index 61e8dfb..221624e 100644 --- a/package/build.lua +++ b/package/build.lua @@ -1,6 +1,6 @@ local json = require 'json-beautify' -local VERSION = "2.5.3" +local VERSION = "2.5.4" local package = require 'package.package' local fsu = require 'fs-utility' diff --git a/publish.lua b/publish.lua index 46032cc..19adb3d 100644 --- a/publish.lua +++ b/publish.lua @@ -79,7 +79,7 @@ end local function runTest(root) local ext = platform.OS == 'Windows' and '.exe' or '' - local exe = root / 'bin' / platform.OS / 'lua-language-server' .. ext + local exe = root / 'bin' / 'lua-language-server' .. ext local test = root / 'test.lua' local lua = subprocess.spawn { exe, diff --git a/server b/server index 028460e..091be40 160000 --- a/server +++ b/server @@ -1 +1 @@ -Subproject commit 028460ed338a0ba582e5f755a9734ed65b290c0d +Subproject commit 091be40543d0866cc37b10a4f76eeb2c86e4c2b1 -- GitLab