Skip to content

Commit 6841090

Browse files
committed
release emmylua_check
1 parent 23c448f commit 6841090

File tree

4 files changed

+10
-1
lines changed

4 files changed

+10
-1
lines changed

.github/workflows/upload_crates.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,7 @@ jobs:
2727
cargo publish --allow-dirty
2828
cd ../emmylua_doc_cli
2929
cargo publish --allow-dirty
30+
cd ../emmylua_check
31+
cargo publish --allow-dirty
3032
env:
3133
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_TOKEN }}

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
# CHANGELOG
22

3-
# 0.4.2(unreleased)
3+
# 0.4.3(unreleased)
4+
5+
# 0.4.2
46

57
`FIX` Fix `self` parameter regard as unuseful issue
68

9+
`NEW` Add `emmylua_check` cli tool, you can use it to check lua code. you can install it by `cargo install emmylua_check`
10+
711
# 0.4.1
812

913
`NEW` all the crates release to crates.io. now you can get `emmylua_parser`, `emmylua_code_analysis`, `emmylua_ls`, `emmylua_doc_cli` from crates.io.

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ if you want to install emmylua_ls and emmylua_doc_cli, you can use the following
3131
cargo install emmylua_ls
3232
# install emmylua_doc_cli
3333
cargo install emmylua_doc_cli
34+
# install emmylua_check
35+
cargo install emmylua_check
3436
```
3537

3638
if you are using vscode, you can install the vscode extension [EmmyLua](https://marketplace.visualstudio.com/items?itemName=tangzx.emmylua) to get a better experience.

tools/edit_version/src/main.rs

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

1011
fn main() {

0 commit comments

Comments
 (0)