Skip to content

File tree

17 files changed

+62
-56
lines changed

17 files changed

+62
-56
lines changed

Cargo.lock

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

harper-brill/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
[package]
22
name = "harper-brill"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
edition = "2024"
55

66
[dependencies]
7-
harper-pos-utils = { path = "../harper-pos-utils/", version = "0.42.0" }
7+
harper-pos-utils = { path = "../harper-pos-utils/", version = "0.43.0" }
88
lazy_static = "1.5.0"
99
rs-conllu = "0.3.0"
1010
serde = "1.0.219"

harper-cli/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ repository = "https://github.com/automattic/harper"
99
anyhow = "1.0.98"
1010
ariadne = "0.4.1"
1111
clap = { version = "4.5.40", features = ["derive", "string"] }
12-
harper-stats = { path = "../harper-stats", version = "0.42.0" }
12+
harper-stats = { path = "../harper-stats", version = "0.43.0" }
1313
dirs = "6.0.0"
14-
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.42.0" }
15-
harper-core = { path = "../harper-core", version = "0.42.0" }
16-
harper-pos-utils = { path = "../harper-pos-utils", version = "0.42.0", features = ["training", "threaded"] }
17-
harper-comments = { path = "../harper-comments", version = "0.42.0" }
18-
harper-typst = { path = "../harper-typst", version = "0.42.0" }
14+
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.43.0" }
15+
harper-core = { path = "../harper-core", version = "0.43.0" }
16+
harper-pos-utils = { path = "../harper-pos-utils", version = "0.43.0", features = ["training", "threaded"] }
17+
harper-comments = { path = "../harper-comments", version = "0.43.0" }
18+
harper-typst = { path = "../harper-typst", version = "0.43.0" }
1919
hashbrown = "0.15.4"
2020
serde = { version = "1.0.219", features = ["derive"] }
2121
serde_json = "1.0.140"

harper-comments/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
[package]
22
name = "harper-comments"
3-
version = "0.42.0"
3+
version = "0.43.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.42.0" }
12-
harper-html = { path = "../harper-html", version = "0.42.0" }
13-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.42.0" }
11+
harper-core = { path = "../harper-core", version = "0.43.0" }
12+
harper-html = { path = "../harper-html", version = "0.43.0" }
13+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.43.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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-core"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"
@@ -31,7 +31,7 @@ foldhash = "0.1.5"
3131
strum_macros = "0.27.1"
3232
strum = "0.27.1"
3333
ammonia = "4.1.0"
34-
harper-brill = { path = "../harper-brill", version = "0.42.0" }
34+
harper-brill = { path = "../harper-brill", version = "0.43.0" }
3535
bitflags = { version = "2.9.1", features = ["serde"] }
3636

3737
[dev-dependencies]

harper-html/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "harper-html"
3-
version = "0.42.0"
3+
version = "0.43.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.42.0" }
11-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.42.0" }
10+
harper-core = { path = "../harper-core", version = "0.43.0" }
11+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.43.0" }
1212
tree-sitter-html = "0.19.0"
1313
tree-sitter = "0.20.10"
1414

harper-literate-haskell/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
[package]
22
name = "harper-literate-haskell"
3-
version = "0.42.0"
3+
version = "0.43.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.42.0" }
11-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.42.0" }
12-
harper-comments = { path = "../harper-comments", version = "0.42.0" }
10+
harper-core = { path = "../harper-core", version = "0.43.0" }
11+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.43.0" }
12+
harper-comments = { path = "../harper-comments", version = "0.43.0" }
1313
itertools = "0.14.0"
1414
paste = "1.0.14"

harper-ls/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
[package]
22
name = "harper-ls"
3-
version = "0.42.0"
3+
version = "0.43.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.42.0" }
12-
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.42.0" }
13-
harper-core = { path = "../harper-core", version = "0.42.0", features = ["concurrent"] }
14-
harper-comments = { path = "../harper-comments", version = "0.42.0" }
15-
harper-typst = { path = "../harper-typst", version = "0.42.0" }
16-
harper-html = { path = "../harper-html", version = "0.42.0" }
11+
harper-stats = { path = "../harper-stats", version = "0.43.0" }
12+
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.43.0" }
13+
harper-core = { path = "../harper-core", version = "0.43.0", features = ["concurrent"] }
14+
harper-comments = { path = "../harper-comments", version = "0.43.0" }
15+
harper-typst = { path = "../harper-typst", version = "0.43.0" }
16+
harper-html = { path = "../harper-html", version = "0.43.0" }
1717
tower-lsp-server = "0.21.1"
1818
tokio = { version = "1.45.1", features = ["fs", "rt", "rt-multi-thread", "macros", "io-std", "io-util", "net"] }
1919
clap = { version = "4.5.40", features = ["derive"] }

harper-pos-utils/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-pos-utils"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
edition = "2024"
55

66
[dependencies]

harper-stats/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "harper-stats"
3-
version = "0.42.0"
3+
version = "0.43.0"
44
edition = "2021"
55
description = "The language checker for developers."
66
license = "Apache-2.0"
@@ -9,7 +9,7 @@ repository = "https://github.com/automattic/harper"
99

1010
[dependencies]
1111
serde = { version = "1.0.217", features = ["derive"] }
12-
harper-core = { path = "../harper-core", version = "0.42.0", features = ["concurrent"] }
12+
harper-core = { path = "../harper-core", version = "0.43.0", features = ["concurrent"] }
1313
uuid = { version = "1.17.0", features = ["serde", "v4"] }
1414
serde_json = "1.0.140"
1515
chrono = "0.4.41"

0 commit comments

Comments
 (0)