Skip to content

Commit

Permalink
0.6.8
Browse files Browse the repository at this point in the history
  • Loading branch information
CppCXY committed Apr 11, 2024
1 parent e143aea commit 4f60223
Show file tree
Hide file tree
Showing 4 changed files with 32 additions and 2 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,21 @@

# 0.6.7

`FIX` 临时把add改为TryAdd, 修复启动错误

`FIX` 修复注释中的缩进显示

`NEW` 隐式继承, 例如:
```lua
---@class A
local a = enum {
aaa = 123
}
```
此时A类将隐式继承右侧表达式的类型

# 0.6.7

`FIX` 修复多线程问题

`FIX` 修复debug inline values过多的问题
Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

# 0.6.7

`FIX` Temporarily change add to TryAdd, fix startup error

`FIX` Fix indentation in comments.

`NEW` Implicit inheritance, e.g..
```lua
---@class A
local a = enum {
aaa = 123
}
```
At this point, class A will implicitly inherit the type of the right-hand expression

# 0.6.7

`FIX` Fix multithreading problem.

`FIX` Fix debug inline values being too high
Expand Down
2 changes: 1 addition & 1 deletion build/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ exports.default = {
emmyDebuggerUrl: 'https://github.com/EmmyLua/EmmyLuaDebugger/releases/download',
lanServerVersion: "0.5.16",
lanServerUrl: 'https://github.com/EmmyLua/EmmyLua-LanguageServer/releases/download',
newLanguageServerVersion: "0.1.6",
newLanguageServerVersion: "0.1.7",
newLanguageServerUrl: "https://github.com/CppCXY/EmmyLuaAnalyzer/releases/download"
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "emmylua",
"displayName": "EmmyLua",
"description": "EmmyLua for vscode",
"version": "0.6.7",
"version": "0.6.8",
"icon": "res/icon.png",
"publisher": "tangzx",
"engines": {
Expand Down

0 comments on commit 4f60223

Please sign in to comment.