Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 18 additions & 18 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-asciidoc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-asciidoc"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-brill/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-brill"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-comments/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-comments"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
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 = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
7 changes: 7 additions & 0 deletions harper-core/irregular_verbs.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@
["fly", "flew", "flown"],
["forget", "forgot", "forgotten"],
["forgo", "forwent", "forgone"],
["forsake", "forsook", "forsaken"],
["freeze", "froze", "frozen"],
"// get -- got -- gotten",
["get", "got", "got"],
Expand Down Expand Up @@ -69,6 +70,7 @@
["meet", "met", "met"],
["mistake", "mistook", "mistaken"],
["output", "output", "output"],
["oversee", "oversaw", "overseen"],
["overtake", "overtook", "overtaken"],
["overthrow", "overthrew", "overthrown"],
["overwind", "overwound", "overwound"],
Expand All @@ -78,10 +80,13 @@
"// prove -- proved -- proven/proved",
["put", "put", "put"],
["read", "read", "read"],
["rebuild", "rebuilt", "rebuilt"],
["redo", "redid", "redone"],
["remake", "remade", "remade"],
["reread", "reread", "reread"],
["reset", "reset", "reset"],
["retake", "retook", "retaken"],
["rewrite", "rewrote", "rewritten"],
["ride", "rode", "ridden"],
["ring", "rang", "rung"],
["rise", "rose", "risen"],
Expand Down Expand Up @@ -144,5 +149,7 @@
["wet", "wet", "wet"],
["win", "won", "won"],
["wind", "wound", "wound"],
["withhold", "withheld", "withheld"],
["withstand", "withstood", "withstood"],
["write", "wrote", "written"]
]
18 changes: 18 additions & 0 deletions harper-core/src/linting/did_past.rs
Original file line number Diff line number Diff line change
Expand Up @@ -329,4 +329,22 @@ mod tests {
DidPast::new(FstDictionary::curated()),
);
}

#[test]
fn derived_verbs_did_withstood() {
assert_suggestion_result(
"The bridge did withstood the storm.",
DidPast::new(FstDictionary::curated()),
"The bridge did withstand the storm.",
);
}

#[test]
fn derived_verbs_did_rewrote() {
assert_suggestion_result(
"I did rewrote the introduction.",
DidPast::new(FstDictionary::curated()),
"I did rewrite the introduction.",
);
}
}
2 changes: 1 addition & 1 deletion harper-desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "harper-desktop",
"version": "2.7.0",
"version": "2.8.0",
"description": "",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion harper-desktop/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-desktop"
version = "2.7.0"
version = "2.8.0"
description = "The language checker for developers."
edition = "2024"
publish = false
Expand Down
2 changes: 1 addition & 1 deletion harper-desktop/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Harper",
"version": "2.7.0",
"version": "2.8.0",
"identifier": "com.elijahpotter.harper-desktop",
"build": {
"beforeDevCommand": "pnpm dev",
Expand Down
2 changes: 1 addition & 1 deletion harper-dictionary-wordlist/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-dictionary-wordlist"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-git-commit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-git-commit"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-html/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-html"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-ink/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-ink"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-jjdescription/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-jjdescription"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-literate-haskell/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-literate-haskell"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
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 = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-pos-utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-pos-utils"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-python"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-stats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-stats"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-tex/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-tex"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-thesaurus/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-thesaurus"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-tree-sitter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-tree-sitter"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
2 changes: 1 addition & 1 deletion harper-typst/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "harper-typst"
version = "2.7.0"
version = "2.8.0"
edition = "2024"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
Loading
Loading