Skip to content

Commit b83fd43

Browse files
committed
0.9.2
1 parent 6b40c06 commit b83fd43

File tree

4 files changed

+30
-2
lines changed

4 files changed

+30
-2
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
[中文Log](CHANGELOG_CN.md)
44

5+
# 0.9.2
6+
7+
`FIX` Fixed the issue with `globalsRegex` being ineffective in the configuration options
8+
9+
`FIX` Now re-supports defining and accessing global variables using `_G`
10+
11+
`FIX` Now re-supports non-strict require mode, where require paths do not need to start from the root directory. This mode requires setting `strict.requirePath` to `false`
12+
13+
`FIX` Fixed an issue that caused errors in document/symbol
14+
15+
`FIX` Fixed the issue with type inference failure for types like `{ [number]: T }`
16+
17+
`CHG` Optimized code by using `smol_str` more extensively
18+
519
# 0.9.1
620

721
`FIX` Fixed a crash issue

CHANGELOG_CN.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Change Log
22

3+
# 0.9.2
4+
5+
`FIX` 修复了配置项里面得globalsRegex无效的问题
6+
7+
`FIX` 现在重新支持使用_G定义和访问全局变量的问题
8+
9+
`FIX` 现在重新支持非严格require模式, 也就是require路径不需要从根目录开始, 该模式需要配置 strict.requirePath 为 false
10+
11+
`FIX` 修复一个导致document/symbol报错的问题
12+
13+
`FIX` 修复`{ [number]: T }`这样的类型推断失效的问题
14+
15+
`CHG` 优化代码, 更多的使用smol_str
16+
317
# 0.9.1
418

519
`FIX` 修复一个崩溃问题

build/config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
exports.default = {
22
emmyDebuggerVersion: '1.8.2',
33
emmyDebuggerUrl: 'https://github.com/EmmyLua/EmmyLuaDebugger/releases/download',
4-
newLanguageServerVersion: "0.2.5",
4+
newLanguageServerVersion: "0.2.6",
55
newLanguageServerUrl: "https://github.com/CppCXY/emmylua-analyzer-rust/releases/download"
66
}

package.json

Lines changed: 1 addition & 1 deletion
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.9.1",
5+
"version": "0.9.2",
66
"icon": "res/icon.png",
77
"publisher": "tangzx",
88
"engines": {

0 commit comments

Comments
 (0)