Skip to content

Commit

Permalink
update to tree-sitter-earthfile 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
glehmann committed May 25, 2024
1 parent 16d118b commit 786eabd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ tokio = { version = "1.36.0", features = ["full"] }
tower-lsp = "0.20.0"
tree-sitter = "0.22.2"
tree-sitter-bash = "0.21.0"
tree-sitter-earthfile = "0.5.0"
tree-sitter-earthfile = "0.5.1"

[profile.release]
strip = "symbols"
Expand Down
2 changes: 1 addition & 1 deletion tests/diagnostic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ async fn should_publish_syntax_diagnostics() {

let d = &ds[1];
assert_eq!(d.range.start.line, 3);
assert_eq!(d.range.start.character, 5);
assert_eq!(d.range.start.character, 6);
assert_eq!(d.range.end.line, 3);
assert_eq!(d.range.end.character, 21);
assert_eq!(d.message, "unknown option");
Expand Down

0 comments on commit 786eabd

Please sign in to comment.