Skip to content

Commit 4f60223

Browse files
committed
0.6.8
1 parent e143aea commit 4f60223

File tree

4 files changed

+32
-2
lines changed

4 files changed

+32
-2
lines changed

CHANGELOG.md

+15
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,21 @@
44

55
# 0.6.7
66

7+
`FIX` 临时把add改为TryAdd, 修复启动错误
8+
9+
`FIX` 修复注释中的缩进显示
10+
11+
`NEW` 隐式继承, 例如:
12+
```lua
13+
---@class A
14+
local a = enum {
15+
aaa = 123
16+
}
17+
```
18+
此时A类将隐式继承右侧表达式的类型
19+
20+
# 0.6.7
21+
722
`FIX` 修复多线程问题
823

924
`FIX` 修复debug inline values过多的问题

CHANGELOG_EN.md

+15
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
# 0.6.7
44

5+
`FIX` Temporarily change add to TryAdd, fix startup error
6+
7+
`FIX` Fix indentation in comments.
8+
9+
`NEW` Implicit inheritance, e.g..
10+
```lua
11+
---@class A
12+
local a = enum {
13+
aaa = 123
14+
}
15+
```
16+
At this point, class A will implicitly inherit the type of the right-hand expression
17+
18+
# 0.6.7
19+
520
`FIX` Fix multithreading problem.
621

722
`FIX` Fix debug inline values being too high

build/config.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ exports.default = {
33
emmyDebuggerUrl: 'https://github.com/EmmyLua/EmmyLuaDebugger/releases/download',
44
lanServerVersion: "0.5.16",
55
lanServerUrl: 'https://github.com/EmmyLua/EmmyLua-LanguageServer/releases/download',
6-
newLanguageServerVersion: "0.1.6",
6+
newLanguageServerVersion: "0.1.7",
77
newLanguageServerUrl: "https://github.com/CppCXY/EmmyLuaAnalyzer/releases/download"
88
}

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "emmylua",
33
"displayName": "EmmyLua",
44
"description": "EmmyLua for vscode",
5-
"version": "0.6.7",
5+
"version": "0.6.8",
66
"icon": "res/icon.png",
77
"publisher": "tangzx",
88
"engines": {

0 commit comments

Comments
 (0)