Skip to content

Commit 91d0526

Browse files
committed
(cargo-release) version 0.1.2
1 parent 688ae6a commit 91d0526

File tree

7 files changed

+12
-12
lines changed

7 files changed

+12
-12
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
@@ -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.1"
8+
rust-sitter = "0.1.2"
99

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

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

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.1.1"
6+
version = "0.1.2"
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.1.1"
3+
version = "0.1.2"
44
authors = ["Shadaj Laddad <[email protected]>"]
55
edition = "2021"
66
publish = false

macro/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.1"
6+
version = "0.1.2"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
edition = "2021"
99
license = "MIT"

runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.1"
6+
version = "0.1.2"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
edition = "2021"
99
license = "MIT"

tool/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.1"
6+
version = "0.1.2"
77
authors = ["Shadaj Laddad <[email protected]>"]
88
license = "MIT"
99
edition = "2021"

0 commit comments

Comments
 (0)