Skip to content

Commit cb00d63

Browse files
committed
Release 0.29.0
harper-comments@0.29.0 harper-core@0.29.0 harper-html@0.29.0 harper-literate-haskell@0.29.0 harper-ls@0.29.0 harper-stats@0.29.0 harper-tree-sitter@0.29.0 harper-typst@0.29.0 Generated by cargo-workspaces
1 parent 871a62d commit cb00d63

File tree

13 files changed

+198
-72
lines changed

13 files changed

+198
-72
lines changed

Cargo.lock

+8-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

harper-cli/Cargo.toml

+5-5
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ repository = "https://github.com/automattic/harper"
1010
anyhow = "1.0.98"
1111
ariadne = "0.4.1"
1212
clap = { version = "4.5.36", features = ["derive", "string"] }
13-
harper-stats = { path = "../harper-stats", version = "0.28.0" }
13+
harper-stats = { path = "../harper-stats", version = "0.29.0" }
1414
dirs = "6.0.0"
15-
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.28.0" }
16-
harper-core = { path = "../harper-core", version = "0.28.0" }
17-
harper-comments = { path = "../harper-comments", version = "0.28.0" }
18-
harper-typst = { path = "../harper-typst", version = "0.28.0" }
15+
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.29.0" }
16+
harper-core = { path = "../harper-core", version = "0.29.0" }
17+
harper-comments = { path = "../harper-comments", version = "0.29.0" }
18+
harper-typst = { path = "../harper-typst", version = "0.29.0" }
1919
hashbrown = "0.15.2"
2020
serde = { version = "1.0.219", features = ["derive"] }
2121
serde_json = "1.0.140"

harper-comments/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "harper-comments"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"
77
readme = "README.md"
88
repository = "https://github.com/automattic/harper"
99

1010
[dependencies]
11-
harper-core = { path = "../harper-core", version = "0.28.0" }
12-
harper-html = { path = "../harper-html", version = "0.28.0" }
13-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.28.0" }
11+
harper-core = { path = "../harper-core", version = "0.29.0" }
12+
harper-html = { path = "../harper-html", version = "0.29.0" }
13+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.29.0" }
1414
tree-sitter = "0.20.10"
1515
tree-sitter-rust = "0.20.4"
1616
tree-sitter-typescript = "0.20.3"

harper-core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-core"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"

harper-html/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "harper-html"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"
77
repository = "https://github.com/automattic/harper"
88

99
[dependencies]
10-
harper-core = { path = "../harper-core", version = "0.28.0" }
11-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.28.0" }
10+
harper-core = { path = "../harper-core", version = "0.29.0" }
11+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.29.0" }
1212
tree-sitter-html = "0.19.0"
1313
tree-sitter = "0.20.10"
1414

harper-literate-haskell/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "harper-literate-haskell"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"
77
repository = "https://github.com/automattic/harper"
88

99
[dependencies]
10-
harper-core = { path = "../harper-core", version = "0.28.0" }
11-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.28.0" }
12-
harper-comments = { path = "../harper-comments", version = "0.28.0" }
10+
harper-core = { path = "../harper-core", version = "0.29.0" }
11+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.29.0" }
12+
harper-comments = { path = "../harper-comments", version = "0.29.0" }
1313
itertools = "0.14.0"
1414
paste = "1.0.14"

harper-ls/Cargo.toml

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[package]
22
name = "harper-ls"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"
77
readme = "README.md"
88
repository = "https://github.com/automattic/harper"
99

1010
[dependencies]
11-
harper-stats = { path = "../harper-stats", version = "0.28.0" }
12-
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.28.0" }
13-
harper-core = { path = "../harper-core", version = "0.28.0", features = ["concurrent"] }
14-
harper-comments = { path = "../harper-comments", version = "0.28.0" }
15-
harper-typst = { path = "../harper-typst", version = "0.28.0" }
16-
harper-html = { path = "../harper-html", version = "0.28.0" }
11+
harper-stats = { path = "../harper-stats", version = "0.29.0" }
12+
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.29.0" }
13+
harper-core = { path = "../harper-core", version = "0.29.0", features = ["concurrent"] }
14+
harper-comments = { path = "../harper-comments", version = "0.29.0" }
15+
harper-typst = { path = "../harper-typst", version = "0.29.0" }
16+
harper-html = { path = "../harper-html", version = "0.29.0" }
1717
tower-lsp = "0.20.0"
1818
tokio = { version = "1.44.2", features = ["fs", "rt", "rt-multi-thread", "macros", "io-std", "io-util", "net"] }
1919
clap = { version = "4.5.36", features = ["derive"] }

harper-stats/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "harper-stats"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2021"
55

66
[dependencies]
77
serde = { version = "1.0.217", features = ["derive"] }
8-
harper-core = { path = "../harper-core", version = "0.28.0", features = ["concurrent"] }
8+
harper-core = { path = "../harper-core", version = "0.29.0", features = ["concurrent"] }
99
uuid = { version = "1.16.0", features = ["serde", "v4"] }
1010
serde_json = "1.0.140"
1111
chrono = "0.4.40"

harper-tree-sitter/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "harper-tree-sitter"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"
77
repository = "https://github.com/automattic/harper"
88

99
[dependencies]
10-
harper-core = { path = "../harper-core", version = "0.28.0" }
10+
harper-core = { path = "../harper-core", version = "0.29.0" }
1111
tree-sitter = "0.20.10"

harper-typst/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "harper-typst"
3-
version = "0.28.0"
3+
version = "0.29.0"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"
77
repository = "https://github.com/automattic/harper"
88

99
[dependencies]
10-
harper-core = { path = "../harper-core", version = "0.28.0" }
10+
harper-core = { path = "../harper-core", version = "0.29.0" }
1111
typst-syntax = { version = "0.13.1" }
1212
ordered-float = { version = "5.0.0", features = ["serde"] }
1313
itertools = "0.14.0"

harper-wasm/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ console_error_panic_hook = "0.1.7"
1414
tracing = "0.1.41"
1515
tracing-wasm = "0.2.1"
1616
wasm-bindgen = "0.2.97"
17-
harper-core = { path = "../harper-core", version = "0.28.0", features = ["concurrent"] }
17+
harper-core = { path = "../harper-core", version = "0.29.0", features = ["concurrent"] }
1818
once_cell = "1.21.3"
1919
serde-wasm-bindgen = "0.6.5"
2020
serde_json = "1.0.140"
2121
serde = { version = "1.0.219", features = ["derive"] }
22-
harper-stats = { path = "../harper-stats", version = "0.28.0", features = ["js"] }
22+
harper-stats = { path = "../harper-stats", version = "0.29.0", features = ["js"] }

packages/harper.js/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "harper.js",
3-
"version": "0.28.0",
3+
"version": "0.29.0",
44
"license": "Apache-2.0",
55
"author": "Elijah Potter",
66
"description": "The grammar checker for developers.",

0 commit comments

Comments
 (0)