Skip to content

Commit 6f7b1ec

Browse files
committed
chore: Release
1 parent 1fb7973 commit 6f7b1ec

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

Cargo.lock

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ Rust Sitter makes it easy to create efficient parsers in Rust by leveraging the
77
First, add Rust/Tree Sitter to your `Cargo.toml`:
88
```toml
99
[dependencies]
10-
rust-sitter = "0.4.3"
10+
rust-sitter = "0.4.4"
1111

1212
[build-dependencies]
13-
rust-sitter-tool = "0.4.3"
13+
rust-sitter-tool = "0.4.4"
1414
```
1515

1616
_Note: By default, Rust Sitter uses a fork of Tree Sitter with a pure-Rust runtime to support `wasm32-unknown-unknown`. To use the standard C runtime instead, disable default features and enable the `tree-sitter-standard` feature_

common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "rust-sitter-common"
33
description = "Shared logic for the Rust Sitter macro and tool"
44
readme = "../README.md"
55
repository = "https://github.com/hydro-project/rust-sitter"
6-
version = "0.4.3"
6+
version = "0.4.4"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
edition = "2021"
99
license = "MIT"

example/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-sitter-example"
3-
version = "0.4.3"
3+
version = "0.4.4"
44
authors = ["Shadaj Laddad <[email protected]>"]
55
edition = "2021"
66
publish = false

macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "rust-sitter-macro"
33
description = "Procedural macros for Rust Sitter"
44
readme = "../README.md"
55
repository = "https://github.com/hydro-project/rust-sitter"
6-
version = "0.4.3"
6+
version = "0.4.4"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
edition = "2021"
99
license = "MIT"
@@ -18,7 +18,7 @@ path = "src/lib.rs"
1818
syn = { version = "2", features = [ "full", "extra-traits" ] }
1919
quote = "1"
2020
proc-macro2 = "1"
21-
rust-sitter-common = { version= "0.4.3", path = "../common" }
21+
rust-sitter-common = { version= "0.4.4", path = "../common" }
2222

2323
[dev-dependencies]
2424
insta = "1.39"

runtime/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "rust-sitter"
33
description = "A package for defining tree-sitter grammars alongside Rust logic"
44
readme = "../README.md"
55
repository = "https://github.com/hydro-project/rust-sitter"
6-
version = "0.4.3"
6+
version = "0.4.4"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
edition = "2021"
99
license = "MIT"
@@ -21,7 +21,7 @@ tree-sitter-standard = ["tree-sitter-runtime-standard"]
2121
[dependencies]
2222
tree-sitter-runtime-c2rust = { package = "tree-sitter-c2rust", version = "0.25.2", optional = true }
2323
tree-sitter-runtime-standard = { package = "tree-sitter", version = "0.25.2", optional = true }
24-
rust-sitter-macro = { version = "0.4.3", path = "../macro" }
24+
rust-sitter-macro = { version = "0.4.4", path = "../macro" }
2525

2626
[dev-dependencies]
2727
insta = "1.39"

tool/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "rust-sitter-tool"
33
description = "The external tool for Rust Sitter that extracts grammars from Rust definitions"
44
readme = "../README.md"
55
repository = "https://github.com/hydro-project/rust-sitter"
6-
version = "0.4.3"
6+
version = "0.4.4"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
license = "MIT"
99
edition = "2021"
@@ -24,7 +24,7 @@ syn = { version = "2", features = ["full", "extra-traits"] }
2424
syn-inline-mod = "0.6"
2525
serde = { version = "1", features = ["derive"] }
2626
serde_json = { version = "1", features = ["preserve_order"] }
27-
rust-sitter-common = { version = "0.4.3", path = "../common" }
27+
rust-sitter-common = { version = "0.4.4", path = "../common" }
2828

2929
tempfile = { version = "3", optional = true }
3030
tree-sitter = { version = "0.25.2", optional = true }

0 commit comments

Comments
 (0)