Skip to content

Commit 0da3835

Browse files
committed
Release 0.24.0
harper-comments@0.24.0 harper-core@0.24.0 harper-html@0.24.0 harper-literate-haskell@0.24.0 harper-ls@0.24.0 harper-tree-sitter@0.24.0 harper-typst@0.24.0 Generated by cargo-workspaces
1 parent c7173a6 commit 0da3835

File tree

12 files changed

+309
-39
lines changed

12 files changed

+309
-39
lines changed

Cargo.lock

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

harper-cli/Cargo.toml

+4-4
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ repository = "https://github.com/automattic/harper"
1010
anyhow = "1.0.96"
1111
ariadne = "0.4.1"
1212
clap = { version = "4.5.31", features = ["derive"] }
13-
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.23.0" }
14-
harper-core = { path = "../harper-core", version = "0.23.0" }
15-
harper-comments = { path = "../harper-comments", version = "0.23.0" }
16-
harper-typst = { path = "../harper-typst", version = "0.23.0" }
13+
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.24.0" }
14+
harper-core = { path = "../harper-core", version = "0.24.0" }
15+
harper-comments = { path = "../harper-comments", version = "0.24.0" }
16+
harper-typst = { path = "../harper-typst", version = "0.24.0" }
1717
hashbrown = "0.15.2"
1818
serde = { version = "1.0.218", features = ["derive"] }
1919
serde_json = "1.0.139"

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.23.0"
3+
version = "0.24.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.23.0" }
12-
harper-html = { path = "../harper-html", version = "0.23.0" }
13-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.23.0" }
11+
harper-core = { path = "../harper-core", version = "0.24.0" }
12+
harper-html = { path = "../harper-html", version = "0.24.0" }
13+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.24.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.23.0"
3+
version = "0.24.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.23.0"
3+
version = "0.24.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.23.0" }
11-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.23.0" }
10+
harper-core = { path = "../harper-core", version = "0.24.0" }
11+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.24.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.23.0"
3+
version = "0.24.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.23.0" }
11-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.23.0" }
12-
harper-comments = { path = "../harper-comments", version = "0.23.0" }
10+
harper-core = { path = "../harper-core", version = "0.24.0" }
11+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.24.0" }
12+
harper-comments = { path = "../harper-comments", version = "0.24.0" }
1313
itertools = "0.14.0"
1414
paste = "1.0.14"

harper-ls/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
[package]
22
name = "harper-ls"
3-
version = "0.23.0"
3+
version = "0.24.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-literate-haskell = { path = "../harper-literate-haskell", version = "0.23.0" }
12-
harper-core = { path = "../harper-core", version = "0.23.0", features = ["concurrent"] }
13-
harper-comments = { path = "../harper-comments", version = "0.23.0" }
14-
harper-typst = { path = "../harper-typst", version = "0.23.0" }
15-
harper-html = { path = "../harper-html", version = "0.23.0" }
11+
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.24.0" }
12+
harper-core = { path = "../harper-core", version = "0.24.0", features = ["concurrent"] }
13+
harper-comments = { path = "../harper-comments", version = "0.24.0" }
14+
harper-typst = { path = "../harper-typst", version = "0.24.0" }
15+
harper-html = { path = "../harper-html", version = "0.24.0" }
1616
tower-lsp = "0.20.0"
1717
tokio = { version = "1.43.0", features = ["fs", "rt", "rt-multi-thread", "macros", "io-std", "io-util", "net"] }
1818
clap = { version = "4.5.31", features = ["derive"] }

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.23.0"
3+
version = "0.24.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.23.0" }
10+
harper-core = { path = "../harper-core", version = "0.24.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.23.0"
3+
version = "0.24.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.23.0" }
10+
harper-core = { path = "../harper-core", version = "0.24.0" }
1111
typst-syntax = { version = "0.13.0" }
1212
ordered-float = { version = "5.0.0", features = ["serde"] }
1313
itertools = "0.14.0"

harper-wasm/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ 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.23.0", features = ["concurrent"] }
17+
harper-core = { path = "../harper-core", version = "0.24.0", features = ["concurrent"] }
1818
once_cell = "1.20.3"
1919
serde-wasm-bindgen = "0.6.5"
2020
serde_json = "1.0.139"

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.23.0",
3+
"version": "0.24.0",
44
"license": "Apache-2.0",
55
"author": "Elijah Potter",
66
"description": "The grammar checker for developers.",

0 commit comments

Comments
 (0)