Skip to content

Commit

Permalink
chore: Release
Browse files Browse the repository at this point in the history
  • Loading branch information
shadaj committed Apr 1, 2023
1 parent 80d4f7a commit 70700ac
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 15 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ Rust Sitter makes it easy to create efficient parsers in Rust by leveraging the
First, add Rust/Tree Sitter to your `Cargo.toml`:
```toml
[dependencies]
rust-sitter = "0.3.2"
rust-sitter = "0.3.3"

[build-dependencies]
rust-sitter-tool = "0.3.2"
rust-sitter-tool = "0.3.3"
```

_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_
Expand Down
2 changes: 1 addition & 1 deletion common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "rust-sitter-common"
description = "Shared logic for the Rust Sitter macro and tool"
readme = "../README.md"
repository = "https://github.com/hydro-project/rust-sitter"
version = "0.3.2"
version = "0.3.3"
authors = ["Shadaj Laddad <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion example/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-sitter-example"
version = "0.3.2"
version = "0.3.3"
authors = ["Shadaj Laddad <[email protected]>"]
edition = "2021"
publish = false
Expand Down
4 changes: 2 additions & 2 deletions macro/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "rust-sitter-macro"
description = "Procedural macros for Rust Sitter"
readme = "../README.md"
repository = "https://github.com/hydro-project/rust-sitter"
version = "0.3.2"
version = "0.3.3"
authors = ["Shadaj Laddad <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -18,7 +18,7 @@ path = "src/lib.rs"
syn = { version = "1.0", features = [ "full", "extra-traits" ] }
quote = "1.0"
proc-macro2 = "1.0.27"
rust-sitter-common = { version= "0.3.2", path = "../common" }
rust-sitter-common = { version= "0.3.3", path = "../common" }

[dev-dependencies]
insta = "1.7.1"
Expand Down
4 changes: 2 additions & 2 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "rust-sitter"
description = "A package for defining tree-sitter grammars alongside Rust logic"
readme = "../README.md"
repository = "https://github.com/hydro-project/rust-sitter"
version = "0.3.2"
version = "0.3.3"
authors = ["Shadaj Laddad <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -21,7 +21,7 @@ tree-sitter-standard = ["tree-sitter-runtime-standard"]
[dependencies]
tree-sitter-runtime-c2rust = { package = "tree-sitter-c2rust", version = "0.20.9", optional = true }
tree-sitter-runtime-standard = { package = "tree-sitter", version = "0.20.9", optional = true }
rust-sitter-macro = { version = "0.3.2", path = "../macro" }
rust-sitter-macro = { version = "0.3.3", path = "../macro" }

[dev-dependencies]
insta = "1.7.1"
Expand Down
4 changes: 2 additions & 2 deletions tool/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "rust-sitter-tool"
description = "The external tool for Rust Sitter that extracts grammars from Rust definitions"
readme = "../README.md"
repository = "https://github.com/hydro-project/rust-sitter"
version = "0.3.2"
version = "0.3.3"
authors = ["Shadaj Laddad <[email protected]>"]
license = "MIT"
edition = "2021"
Expand All @@ -19,7 +19,7 @@ syn = { version = "1.0", features = [ "full", "extra-traits" ] }
syn-inline-mod = "0.5.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1", features = ["preserve_order"] }
rust-sitter-common = { version = "0.3.2", path = "../common" }
rust-sitter-common = { version = "0.3.3", path = "../common" }

tempfile = { version = "3.0.0", optional = true }
tree-sitter = { package = "tree-sitter", version = "0.20.9", optional = true }
Expand Down

0 comments on commit 70700ac

Please sign in to comment.