Skip to content

Commit b015f32

Browse files
committed
chore: Release
1 parent 5954bbf commit b015f32

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.1.2"
8+
rust-sitter = "0.2.0"
99

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

1414
The first step is to configure your `build.rs` to compile and link the generated Tree Sitter parser:

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.1.2"
6+
version = "0.2.0"
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.1.2"
3+
version = "0.2.0"
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.1.2"
6+
version = "0.2.0"
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.1.0", path = "../common" }
21+
rust-sitter-common = { version= "0.2.0", 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.1.2"
6+
version = "0.2.0"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
edition = "2021"
99
license = "MIT"
@@ -15,7 +15,7 @@ path = "src/lib.rs"
1515

1616
[dependencies]
1717
tree-sitter = "0.20.6"
18-
rust-sitter-macro = { version = "0.1.0", path = "../macro" }
18+
rust-sitter-macro = { version = "0.2.0", path = "../macro" }
1919

2020
[dev-dependencies]
2121
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.1.2"
6+
version = "0.2.0"
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.1.0", path = "../common" }
22+
rust-sitter-common = { version = "0.2.0", path = "../common" }
2323

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

0 commit comments

Comments
 (0)