Skip to content

Commit

Permalink
Release 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
elijah-potter committed Jul 25, 2024
1 parent e8e085b commit a22c987
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 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,5 +10,5 @@ repository = "https://github.com/elijah-potter/harper"
anyhow = "1.0.83"
ariadne = "0.4.1"
clap = { version = "4.5.4", features = ["derive"] }
harper-core = { path = "../harper-core", version = "0.8.0" }
harper-comments = { path = "../harper-comments", version = "0.8.0" }
harper-core = { path = "../harper-core", version = "0.9.0" }
harper-comments = { path = "../harper-comments", version = "0.9.0" }
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.8.8"
version = "0.9.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.8.0" }
harper-html = { path = "../harper-html", version = "0.8.0" }
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.8.0" }
harper-core = { path = "../harper-core", version = "0.9.0" }
harper-html = { path = "../harper-html", version = "0.9.0" }
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.9.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.8.8"
version = "0.9.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,15 +1,15 @@
[package]
name = "harper-html"
version = "0.8.8"
version = "0.9.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.8.0" }
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.8.0" }
harper-core = { path = "../harper-core", version = "0.9.0" }
harper-tree-sitter = { path = "../harper-tree-sitter", version = "0.9.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.8.8"
version = "0.9.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.8.0", features = ["concurrent"] }
harper-comments = { path = "../harper-comments", version = "0.8.0" }
harper-html = { path = "../harper-html", version = "0.8.0" }
harper-core = { path = "../harper-core", version = "0.9.0", features = ["concurrent"] }
harper-comments = { path = "../harper-comments", version = "0.9.0" }
harper-html = { path = "../harper-html", version = "0.9.0" }
tower-lsp = "0.20.0"
tokio = { version = "1.36.0", features = ["fs", "rt", "rt-multi-thread", "macros", "io-std", "io-util", "net"] }
clap = { version = "4.5.1", 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,12 +1,12 @@
[package]
name = "harper-tree-sitter"
version = "0.8.8"
version = "0.9.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.8.0" }
harper-core = { path = "../harper-core", version = "0.9.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,5 +14,5 @@ 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.8.0", features = ["concurrent"] }
harper-core = { path = "../harper-core", version = "0.9.0", features = ["concurrent"] }
once_cell = "1.19.0"

0 comments on commit a22c987

Please sign in to comment.