Skip to content

Commit

Permalink
Release 0.5.1
Browse files Browse the repository at this point in the history
[email protected]
[email protected]

Generated by cargo-workspaces
  • Loading branch information
elijah-potter committed Jan 27, 2024
1 parent 2eaed89 commit 7f71367
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 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 harper-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-core"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "The language checker for artists."
license = "MIT OR Apache-2.0"
Expand Down
3 changes: 2 additions & 1 deletion harper-core/src/linting/matcher.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,8 @@ impl Matcher {
"then","her" => "than her",
"then","hers" => "than hers",
"then","him" => "than him",
"then","his" => "than his"
"then","his" => "than his",
"simply","grammatical" => "simple grammatical"
};

triggers.push(Rule {
Expand Down
2 changes: 1 addition & 1 deletion harper-ls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-ls"
version = "0.5.0"
version = "0.5.1"
edition = "2021"
description = "The language checker for artists."
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions harper-ls/src/tree_sitter_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ impl TreeSitterParser {
"c" => tree_sitter_c::language(),
"cpp" => tree_sitter_cpp::language(),
"h" => tree_sitter_cpp::language(),
"hpp" => tree_sitter_cpp::language(),
"rb" => tree_sitter_ruby::language(),
"swift" => tree_sitter_ruby::language(),
"cs" => tree_sitter_c_sharp::language(),
Expand Down

0 comments on commit 7f71367

Please sign in to comment.