Skip to content

Commit

Permalink
Release 0.4.0
Browse files Browse the repository at this point in the history
harper-core@0.4.0
harper-ls@0.4.0

Generated by cargo-workspaces
  • Loading branch information
elijah-potter committed Jan 27, 2024
1 parent 6dbcebd commit 302b1cb
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 9 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.3.0"
version = "0.4.0"
edition = "2021"
description = "The language checker for artists."
license = "MIT OR Apache-2.0"
Expand Down
1 change: 1 addition & 0 deletions harper-core/dictionary.dict
Original file line number Diff line number Diff line change
Expand Up @@ -49585,3 +49585,4 @@ CommonMark/M
lex/D
Levenshtein/M
QUERTY
SIMD
5 changes: 1 addition & 4 deletions harper-core/src/parsers/markdown.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
use itertools::Itertools;
use pulldown_cmark::LinkType;

use super::{Parser, PlainEnglish, StrParser};
use super::{Parser, PlainEnglish};
use crate::{Span, Token, TokenKind};

/// A parser that wraps the [`PlainEnglish`] parser that allows one to parse CommonMark files.
Expand Down
4 changes: 2 additions & 2 deletions harper-ls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[package]
name = "harper-ls"
version = "0.3.0"
version = "0.4.0"
edition = "2021"
description = "The language checker for artists."
license = "MIT OR Apache-2.0"

[dependencies]
harper-core = { path = "../harper-core", version = "0.3.0" }
harper-core = { path = "../harper-core", version = "0.4.0" }
tower-lsp = "0.20.0"
tokio = { version = "1.35.1", features = ["full"] }
clap = { version = "4.4.18", features = ["derive"] }
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 @@ -25,6 +25,7 @@ impl TreeSitterParser {
"go" => tree_sitter_go::language(),
"c" => tree_sitter_c::language(),
"cpp" => tree_sitter_cpp::language(),
"h" => 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 302b1cb

Please sign in to comment.