Skip to content

Commit

Permalink
Release 0.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elijah-potter committed Oct 13, 2024
1 parent fe5cb8e commit 0c054d2
Show file tree
Hide file tree
Showing 9 changed files with 235 additions and 235 deletions.
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions harper-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ repository = "https://github.com/elijah-potter/harper"
anyhow = "1.0.83"
ariadne = "0.4.1"
clap = { version = "4.5.18", features = ["derive"] }
harper-core = { path = "../harper-core", version = "0.11.0" }
harper-comments = { path = "../harper-comments", version = "0.11.0" }
harper-core = { path = "../harper-core", version = "0.12.0" }
harper-comments = { path = "../harper-comments", version = "0.12.0" }
serde_json = "1.0.128"
8 changes: 4 additions & 4 deletions harper-comments/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "harper-comments"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
description = "The language checker for developers."
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/elijah-potter/harper"

[dependencies]
harper-core = { path = "../harper-core", version = "0.11.0" }
harper-html = { path = "../harper-html", version = "0.11.0" }
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.11.0" }
harper-core = { path = "../harper-core", version = "0.12.0" }
harper-html = { path = "../harper-html", version = "0.12.0" }
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.12.0" }
tree-sitter = "0.20.10"
tree-sitter-rust = "0.20.4"
tree-sitter-typescript = "0.20.3"
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 = "0.11.0"
version = "0.12.0"
edition = "2021"
description = "The language checker for developers."
license = "Apache-2.0"
Expand Down
6 changes: 3 additions & 3 deletions harper-html/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
[package]
name = "harper-html"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
description = "The language checker for developers."
license = "Apache-2.0"
repository = "https://github.com/elijah-potter/harper"

[dependencies]
harper-core = { path = "../harper-core", version = "0.11.0" }
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.11.0" }
harper-core = { path = "../harper-core", version = "0.12.0" }
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.12.0" }
tree-sitter-html = "0.19.0"
tree-sitter = "0.20.10"

Expand Down
8 changes: 4 additions & 4 deletions harper-ls/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
[package]
name = "harper-ls"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
description = "The language checker for developers."
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/elijah-potter/harper"

[dependencies]
harper-core = { path = "../harper-core", version = "0.11.0", features = ["concurrent"] }
harper-comments = { path = "../harper-comments", version = "0.11.0" }
harper-html = { path = "../harper-html", version = "0.11.0" }
harper-core = { path = "../harper-core", version = "0.12.0", features = ["concurrent"] }
harper-comments = { path = "../harper-comments", version = "0.12.0" }
harper-html = { path = "../harper-html", version = "0.12.0" }
tower-lsp = "0.20.0"
tokio = { version = "1.40.0", features = ["fs", "rt", "rt-multi-thread", "macros", "io-std", "io-util", "net"] }
clap = { version = "4.5.18", features = ["derive"] }
Expand Down
4 changes: 2 additions & 2 deletions harper-tree-sitter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "harper-tree-sitter"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
description = "The language checker for developers."
license = "Apache-2.0"
repository = "https://github.com/elijah-potter/harper"

[dependencies]
harper-core = { path = "../harper-core", version = "0.11.0" }
harper-core = { path = "../harper-core", version = "0.12.0" }
tree-sitter = "0.20.10"
2 changes: 1 addition & 1 deletion harper-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ console_error_panic_hook = "0.1.7"
tracing = "0.1.40"
tracing-wasm = "0.2.1"
wasm-bindgen = "0.2.91"
harper-core = { path = "../harper-core", version = "0.11.0", features = ["concurrent"] }
harper-core = { path = "../harper-core", version = "0.12.0", features = ["concurrent"] }
once_cell = "1.19.0"
serde-wasm-bindgen = "0.6.5"
Loading

0 comments on commit 0c054d2

Please sign in to comment.