Skip to content

Commit d2d0c4a

Browse files
committed
update
1 parent d3255a3 commit d2d0c4a

10 files changed

Lines changed: 16 additions & 14 deletions

File tree

.github/workflows/upload_crates.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Publish
2020
run: |
21-
for dir in emmylua_{code_analysis,ls,doc_cli,check}; do
21+
for dir in emmylua_{formatter,code_analysis,ls,doc_cli,check}; do
2222
pushd "crates/$dir"
2323
cargo publish --allow-dirty
2424
popd

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,11 @@
22

33
*All notable changes to the EmmyLua Analyzer Rust project will be documented in this file.*
44

5-
## [0.24.0] - 2026-5-12
5+
## [0.23.1] - 2026-5-14
66

77
- **Fix range format issue**: Built-in formatter now supports range format
88
- **Fix some formatting edge cases**: Fixed some formatting edge cases, which are still being continuously improved
9+
- **Fix some stuck loading issue** Fixed some issue that cause the language server stuck at loading workspace, and improve the loading performance of large workspace
910

1011

1112
## [0.23.0] - 2026-5-9

Cargo.lock

Lines changed: 5 additions & 5 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,8 +7,8 @@ members = [
77

88
[workspace.dependencies]
99
# local
10-
emmylua_code_analysis = { path = "crates/emmylua_code_analysis", version = "0.23.0" }
11-
emmylua_formatter = { path = "crates/emmylua_formatter", version = "0.23.0" }
10+
emmylua_code_analysis = { path = "crates/emmylua_code_analysis", version = "0.23.1" }
11+
emmylua_formatter = { path = "crates/emmylua_formatter", version = "0.23.1" }
1212
emmylua_parser = { path = "crates/emmylua_parser", version = "0.26.0" }
1313
emmylua_parser_desc = { path = "crates/emmylua_parser_desc", version = "0.26.0" }
1414
emmylua_diagnostic_macro = { path = "crates/emmylua_diagnostic_macro", version = "0.5.0" }

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.23.0"
3+
version = "0.23.1"
44
edition = "2024"
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.23.0"
3+
version = "0.23.1"
44
edition = "2024"
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.23.0"
3+
version = "0.23.1"
44
edition = "2024"
55
authors = ["CppCXY"]
66
description = "A command-line tool for generating lua documentation."

crates/emmylua_formatter/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_formatter"
3-
version = "0.23.0"
3+
version = "0.23.1"
44
edition = "2024"
55
authors = ["CppCXY"]
66
description = "A command-line tool for formatting Lua code"

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.23.0"
3+
version = "0.23.1"
44
edition = "2024"
55
authors = ["CppCXY"]
66
description = "A language server for emmylua."

tools/edit_version/src/main.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ const CARGOS: &[&str] = &[
66
"crates/emmylua_doc_cli/Cargo.toml",
77
"crates/emmylua_ls/Cargo.toml",
88
"crates/emmylua_check/Cargo.toml",
9+
"crates/emmylua_formatter/Cargo.toml",
910
];
1011

1112
fn main() {

0 commit comments

Comments
 (0)