Skip to content

Commit 391ca88

Browse files
committed
3.8.2
1 parent 30f04a9 commit 391ca88

File tree

6 files changed

+14
-6
lines changed

6 files changed

+14
-6
lines changed

changelog.md

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

3+
## 3.8.2
4+
`2024-4-23`
5+
* This is a fake version only for the new version of VSCode, with a core of 3.8.0.
6+
7+
## 3.8.1
8+
`2024-4-23`
9+
* This is a fake version only for the old version of VSCode, with a core of `3.7.4`. Starting from the next minor version, the version requirement for VSCode will be raised to prevent users still using the old version of VSCode from updating to the new version and experiencing compatibility issues.
10+
311
## 3.8.0
412
`2024-4-22`
513
* `NEW` supports tuple type (@[lizho])

client/webvue

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3331,7 +3331,7 @@
33313331
"description": "Lua Language Server coded by Lua",
33323332
"displayName": "Lua",
33333333
"engines": {
3334-
"vscode": "^1.67.0"
3334+
"vscode": "^1.86.0"
33353335
},
33363336
"icon": "images/logo.png",
33373337
"keywords": [
@@ -3350,5 +3350,5 @@
33503350
"sponsor": {
33513351
"url": "https://github.com/LuaLS/lua-language-server/issues/484"
33523352
},
3353-
"version": "3.8.0"
3353+
"version": "3.8.2"
33543354
}

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 = "3.8.0"
3+
local VERSION = "3.8.2"
44

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

package/package.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ return {
2424
url = "https://github.com/LuaLS/lua-language-server/issues/484"
2525
},
2626
engines = {
27-
vscode = "^1.67.0"
27+
vscode = "^1.86.0"
2828
},
2929
activationEvents = {
3030
"onLanguage:lua",

server

Submodule server updated 1 file

0 commit comments

Comments
 (0)