Skip to content

Commit 0861d39

Browse files
committed
Release 0.70.0
harper-brill@0.70.0 harper-comments@0.70.0 harper-core@0.70.0 harper-html@0.70.0 harper-ink@0.70.0 harper-jjdescription@0.70.0 harper-literate-haskell@0.70.0 harper-ls@0.70.0 harper-pos-utils@0.70.0 harper-python@0.70.0 harper-stats@0.70.0 harper-tree-sitter@0.70.0 harper-typst@0.70.0 Generated by cargo-workspaces
1 parent 1945a52 commit 0861d39

File tree

20 files changed

+74
-68
lines changed

20 files changed

+74
-68
lines changed

Cargo.lock

Lines changed: 13 additions & 13 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,13 +1,13 @@
11
[package]
22
name = "harper-brill"
3-
version = "0.69.0"
3+
version = "0.70.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-pos-utils = { path = "../harper-pos-utils/", version = "0.69.0" }
10+
harper-pos-utils = { path = "../harper-pos-utils/", version = "0.70.0" }
1111
lazy_static = "1.5.0"
1212
rs-conllu = "0.3.0"
1313
serde = "1.0.228"

harper-cli/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,20 @@ repository = "https://github.com/automattic/harper"
99
anyhow = "1.0.100"
1010
ariadne = "0.4.1"
1111
clap = { version = "4.5.48", features = ["derive", "string"] }
12-
harper-stats = { path = "../harper-stats", version = "0.69.0" }
12+
harper-stats = { path = "../harper-stats", version = "0.70.0" }
1313
dirs = "6.0.0"
14-
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.69.0" }
15-
harper-python = { path = "../harper-python", version = "0.69.0" }
16-
harper-core = { path = "../harper-core", version = "0.69.0" }
17-
harper-pos-utils = { path = "../harper-pos-utils", version = "0.69.0", features = ["threaded"] }
18-
harper-comments = { path = "../harper-comments", version = "0.69.0" }
19-
harper-typst = { path = "../harper-typst", version = "0.69.0" }
14+
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.70.0" }
15+
harper-python = { path = "../harper-python", version = "0.70.0" }
16+
harper-core = { path = "../harper-core", version = "0.70.0" }
17+
harper-pos-utils = { path = "../harper-pos-utils", version = "0.70.0", features = ["threaded"] }
18+
harper-comments = { path = "../harper-comments", version = "0.70.0" }
19+
harper-typst = { path = "../harper-typst", version = "0.70.0" }
2020
hashbrown = "0.16.0"
2121
serde = { version = "1.0.228", features = ["derive"] }
2222
serde_json = "1.0.145"
2323
strum = "0.27.2"
2424
strum_macros = "0.27.2"
25-
harper-ink = { version = "0.69.0", path = "../harper-ink" }
25+
harper-ink = { version = "0.70.0", path = "../harper-ink" }
2626

2727
[features]
2828
default = []

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.69.0"
3+
version = "0.70.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.69.0" }
12-
harper-html = { path = "../harper-html", version = "0.69.0" }
13-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.69.0" }
11+
harper-core = { path = "../harper-core", version = "0.70.0" }
12+
harper-html = { path = "../harper-html", version = "0.70.0" }
13+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.70.0" }
1414
itertools = "0.14.0"
1515
tree-sitter = "0.25.10"
1616
tree-sitter-bash = "0.25.0"

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.69.0"
3+
version = "0.70.0"
44
edition = "2024"
55
description = "The language checker for developers."
66
license = "Apache-2.0"
@@ -31,7 +31,7 @@ foldhash = "0.2.0"
3131
strum_macros = "0.27.2"
3232
strum = "0.27.2"
3333
ammonia = "4.1.2"
34-
harper-brill = { path = "../harper-brill", version = "0.69.0" }
34+
harper-brill = { path = "../harper-brill", version = "0.70.0" }
3535
bitflags = { version = "2.10.0", 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.69.0"
3+
version = "0.70.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.69.0" }
11-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.69.0" }
10+
harper-core = { path = "../harper-core", version = "0.70.0" }
11+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.70.0" }
1212
tree-sitter-html = "0.23.2"
1313
tree-sitter = "0.25.10"
1414

harper-ink/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-ink"
3-
version = "0.69.0"
3+
version = "0.70.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.69.0" }
11-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.69.0" }
10+
harper-core = { path = "../harper-core", version = "0.70.0" }
11+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.70.0" }
1212
tree-sitter-ink-lbz = "0.0.1"
1313
tree-sitter = "0.25.10"
1414

harper-jjdescription/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-jjdescription"
3-
version = "0.69.0"
3+
version = "0.70.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.69.0" }
11-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.69.0" }
10+
harper-core = { path = "../harper-core", version = "0.70.0" }
11+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.70.0" }
1212
tree-sitter-jjdescription = "0.0.1"
1313
tree-sitter = "0.25.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.69.0"
3+
version = "0.70.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.69.0" }
11-
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.69.0" }
12-
harper-comments = { path = "../harper-comments", version = "0.69.0" }
10+
harper-core = { path = "../harper-core", version = "0.70.0" }
11+
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.70.0" }
12+
harper-comments = { path = "../harper-comments", version = "0.70.0" }
1313
itertools = "0.14.0"
1414
paste = "1.0.14"

harper-ls/Cargo.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
[package]
22
name = "harper-ls"
3-
version = "0.69.0"
3+
version = "0.70.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.69.0" }
12-
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.69.0" }
13-
harper-core = { path = "../harper-core", version = "0.69.0", features = ["concurrent"] }
14-
harper-comments = { path = "../harper-comments", version = "0.69.0" }
15-
harper-jjdescription = { path = "../harper-jjdescription", version = "0.69.0" }
16-
harper-typst = { path = "../harper-typst", version = "0.69.0" }
17-
harper-html = { path = "../harper-html", version = "0.69.0" }
18-
harper-python = { path = "../harper-python", version = "0.69.0" }
11+
harper-stats = { path = "../harper-stats", version = "0.70.0" }
12+
harper-literate-haskell = { path = "../harper-literate-haskell", version = "0.70.0" }
13+
harper-core = { path = "../harper-core", version = "0.70.0", features = ["concurrent"] }
14+
harper-comments = { path = "../harper-comments", version = "0.70.0" }
15+
harper-jjdescription = { path = "../harper-jjdescription", version = "0.70.0" }
16+
harper-typst = { path = "../harper-typst", version = "0.70.0" }
17+
harper-html = { path = "../harper-html", version = "0.70.0" }
18+
harper-python = { path = "../harper-python", version = "0.70.0" }
1919
tower-lsp-server = "0.22.1"
2020
tokio = { version = "1.48.0", features = ["fs", "rt", "rt-multi-thread", "macros", "io-std", "io-util", "net"] }
2121
clap = { version = "4.5.48", features = ["derive"] }
@@ -32,7 +32,7 @@ futures = "0.3.31"
3232
serde = { version = "1.0.228", features = ["derive"] }
3333
indexmap = { version = "2.12.0", features = ["serde"] }
3434
globset = "0.4.18"
35-
harper-ink = { version = "0.69.0", path = "../harper-ink" }
35+
harper-ink = { version = "0.70.0", path = "../harper-ink" }
3636

3737
[features]
3838
default = []

0 commit comments

Comments
 (0)