Skip to content

Commit efb92bf

Browse files
committed
update version
1 parent 64c9ccc commit efb92bf

File tree

7 files changed

+27
-10
lines changed

7 files changed

+27
-10
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
33
*All notable changes to the EmmyLua Analyzer Rust project will be documented in this file.*
44

55
---
6+
7+
## [0.9.0] - 2025-7-11
8+
### 🔧 Changed
9+
10+
- **Flow Inference Refactor**: Refactored flow analysis algorithm, now uses a TypeScript-like flow analysis approach for better handling of complex scenarios.
11+
- **Doc CLI**: Changed export format, now supports multiple `@see` and other tag flags.
12+
13+
### ✨ Added
14+
15+
- **TypeGuard Now Supports Generics**: You can now use generic parameters in TypeGuard, e.g. `TypeGuard<T>`.
16+
- **Type Narrowing by Constant Fields**: Supports type narrowing using constant fields.
17+
- **Basic Range Checking**: Array type indexing is now less frequently nullable.
18+
19+
### 🐛 Fixed
20+
21+
- **Bug Fixes**: Fixed various bugs.
22+
623
## [0.8.2] - 2025-6-27
724
### ✨ Added
825
- **Support for Descriptions Above and After Tags**: You can now add descriptions both above a tag (as a preceding comment) and after a tag (inline). The description will be associated with the corresponding tag.

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ members = [
77

88
[workspace.dependencies]
99
# local
10-
emmylua_code_analysis = { path = "crates/emmylua_code_analysis", version = "0.8.2" }
10+
emmylua_code_analysis = { path = "crates/emmylua_code_analysis", version = "0.9.0" }
1111
emmylua_parser = { path = "crates/emmylua_parser", version = "0.11.0" }
1212
emmylua_diagnostic_macro = { path = "crates/emmylua_diagnostic_macro", version = "0.4.0" }
1313

@@ -47,4 +47,4 @@ include_dir = "0.7.4"
4747
toml_edit = "0.22.23"
4848
itertools = "0.14.0"
4949
clap = { version = "4.5.39", features = ["derive", "wrap_help"] }
50-
ansi_term = "0.12.1"
50+
ansi_term = "0.12.1"

crates/emmylua_check/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_check"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
edition = "2021"
55
authors = ["CppCXY"]
66
description = "A command-line tool for checking lua code."

crates/emmylua_code_analysis/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_code_analysis"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
edition = "2021"
55
authors = ["CppCXY"]
66
description = "A library for analyzing lua code."

crates/emmylua_doc_cli/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_doc_cli"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
edition = "2021"
55
authors = ["CppCXY"]
66
description = "A command-line tool for generating lua documentation."

crates/emmylua_ls/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_ls"
3-
version = "0.8.2"
3+
version = "0.9.0"
44
edition = "2021"
55
authors = ["CppCXY"]
66
description = "A language server for emmylua."

0 commit comments

Comments
 (0)