Skip to content

Commit aef31fe

Browse files
committed
update parser version
1 parent b393852 commit aef31fe

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# CHANGELOG
22

3-
# 0.8.1 (unreleased)
3+
# 0.8.2 (unreleased)
4+
5+
# 0.8.1
46

57
`CHG` Generic constraint (StrTplRef) removes the protection for string:
68
```lua
@@ -12,7 +14,7 @@ end
1214

1315
---@class A
1416

15-
lcoal A = class("A") -- error
17+
local A = class("A") -- error
1618
```
1719

1820
`NEW` Explicitly declared `Tuple` are immutable.
@@ -71,6 +73,9 @@ A = M() -- `A` is `MyClass`
7173

7274
`NEW` `inlay_hint` params hint can now jump to the actual type definition.
7375

76+
`NEW` When closing files in the editor that are not in the workspace or library, their impact will be removed
77+
78+
`NEW` Enhanced Ignore-related functionality. Files configured to be ignored will not be parsed even when opened, but due to technical constraints, files already open when starting the editor will still be parsed (to be fixed in a future update)
7479

7580
# 0.8.0
7681

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ members = [
88
[workspace.dependencies]
99
# local
1010
emmylua_code_analysis = { path = "crates/emmylua_code_analysis", version = "0.8.0" }
11-
emmylua_parser = { path = "crates/emmylua_parser", version = "0.10.7" }
11+
emmylua_parser = { path = "crates/emmylua_parser", version = "0.10.8" }
1212
emmylua_diagnostic_macro = { path = "crates/emmylua_diagnostic_macro", version = "0.4.0" }
1313

1414
# external

crates/emmylua_parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "emmylua_parser"
3-
version = "0.10.7"
3+
version = "0.10.8"
44
edition = "2021"
55
authors = ["CppCXY"]
66
description = "A parser for EmmyLua and luals"

0 commit comments

Comments
 (0)