Skip to content

Commit ef5b507

Browse files
committed
chore: Release
1 parent 4d94e61 commit ef5b507

File tree

7 files changed

+15
-15
lines changed

7 files changed

+15
-15
lines changed

Cargo.lock

+5-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Rust Sitter makes it easy to create efficient parsers in Rust by leveraging the
55
First, add Rust/Tree Sitter to your `Cargo.toml`:
66
```toml
77
[dependencies]
8-
rust-sitter = "0.2.0"
8+
rust-sitter = "0.2.1"
99

1010
[build-dependencies]
11-
rust-sitter-tool = "0.2.0"
11+
rust-sitter-tool = "0.2.1"
1212
```
1313

1414
_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

+1-1
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.2.0"
6+
version = "0.2.1"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
edition = "2021"
99
license = "MIT"

example/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rust-sitter-example"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
authors = ["Shadaj Laddad <[email protected]>"]
55
edition = "2021"
66
publish = false

macro/Cargo.toml

+2-2
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.2.0"
6+
version = "0.2.1"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
edition = "2021"
99
license = "MIT"
@@ -18,7 +18,7 @@ path = "src/lib.rs"
1818
syn = { version = "1.0", features = [ "full", "extra-traits" ] }
1919
quote = "1.0"
2020
proc-macro2 = "1.0.27"
21-
rust-sitter-common = { version= "0.2.0", path = "../common" }
21+
rust-sitter-common = { version= "0.2.1", path = "../common" }
2222

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

runtime/Cargo.toml

+2-2
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.2.0"
6+
version = "0.2.1"
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.20.9", optional = true }
2323
tree-sitter-runtime-standard = { package = "tree-sitter", version = "0.20.9", optional = true }
24-
rust-sitter-macro = { version = "0.2.0", path = "../macro" }
24+
rust-sitter-macro = { version = "0.2.1", path = "../macro" }
2525

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

tool/Cargo.toml

+2-2
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.2.0"
6+
version = "0.2.1"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
license = "MIT"
99
edition = "2021"
@@ -19,7 +19,7 @@ syn = { version = "1.0", features = [ "full", "extra-traits" ] }
1919
syn-inline-mod = "0.5.0"
2020
serde = { version = "1.0", features = ["derive"] }
2121
serde_json = { version = "1", features = ["preserve_order"] }
22-
rust-sitter-common = { version = "0.2.0", path = "../common" }
22+
rust-sitter-common = { version = "0.2.1", path = "../common" }
2323

2424
tempfile = { version = "3.0.0", optional = true }
2525
tree-sitter = { package = "tree-sitter", version = "0.20.9", optional = true }

0 commit comments

Comments
 (0)