From dc49057c13cde4d99899680b35812d2f9346988a Mon Sep 17 00:00:00 2001 From: Shadaj Laddad Date: Thu, 18 Apr 2024 21:55:39 -0700 Subject: [PATCH] chore: Release --- Cargo.lock | 10 +++++----- README.md | 4 ++-- common/Cargo.toml | 2 +- example/Cargo.toml | 2 +- macro/Cargo.toml | 4 ++-- runtime/Cargo.toml | 4 ++-- tool/Cargo.toml | 4 ++-- 7 files changed, 15 insertions(+), 15 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1222b52..ac0e47d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -673,7 +673,7 @@ checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56" [[package]] name = "rust-sitter" -version = "0.4.1" +version = "0.4.2" dependencies = [ "insta", "rust-sitter-macro", @@ -684,7 +684,7 @@ dependencies = [ [[package]] name = "rust-sitter-common" -version = "0.4.1" +version = "0.4.2" dependencies = [ "quote", "syn 1.0.109", @@ -692,7 +692,7 @@ dependencies = [ [[package]] name = "rust-sitter-example" -version = "0.4.1" +version = "0.4.2" dependencies = [ "codemap", "codemap-diagnostic", @@ -704,7 +704,7 @@ dependencies = [ [[package]] name = "rust-sitter-macro" -version = "0.4.1" +version = "0.4.2" dependencies = [ "insta", "proc-macro2", @@ -716,7 +716,7 @@ dependencies = [ [[package]] name = "rust-sitter-tool" -version = "0.4.1" +version = "0.4.2" dependencies = [ "cc", "insta", diff --git a/README.md b/README.md index 6b47b66..b914aa7 100644 --- a/README.md +++ b/README.md @@ -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.4.1" +rust-sitter = "0.4.2" [build-dependencies] -rust-sitter-tool = "0.4.1" +rust-sitter-tool = "0.4.2" ``` _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_ diff --git a/common/Cargo.toml b/common/Cargo.toml index 660a017..86bb9b4 100644 --- a/common/Cargo.toml +++ b/common/Cargo.toml @@ -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.4.1" +version = "0.4.2" authors = ["Shadaj Laddad "] edition = "2021" license = "MIT" diff --git a/example/Cargo.toml b/example/Cargo.toml index e4da297..3e86a9e 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-sitter-example" -version = "0.4.1" +version = "0.4.2" authors = ["Shadaj Laddad "] edition = "2021" publish = false diff --git a/macro/Cargo.toml b/macro/Cargo.toml index d9afa0f..d93118e 100644 --- a/macro/Cargo.toml +++ b/macro/Cargo.toml @@ -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.4.1" +version = "0.4.2" authors = ["Shadaj Laddad "] edition = "2021" license = "MIT" @@ -18,7 +18,7 @@ path = "src/lib.rs" syn = { version = "1.0", features = [ "full", "extra-traits" ] } quote = "1.0" proc-macro2 = "1.0.67" -rust-sitter-common = { version= "0.4.1", path = "../common" } +rust-sitter-common = { version= "0.4.2", path = "../common" } [dev-dependencies] insta = "1.7.1" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 377c666..d3cf395 100644 --- a/runtime/Cargo.toml +++ b/runtime/Cargo.toml @@ -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.4.1" +version = "0.4.2" authors = ["Shadaj Laddad "] edition = "2021" license = "MIT" @@ -21,7 +21,7 @@ tree-sitter-standard = ["tree-sitter-runtime-standard"] [dependencies] tree-sitter-runtime-c2rust = { package = "tree-sitter-c2rust", version = "0.22.5", optional = true } tree-sitter-runtime-standard = { package = "tree-sitter", version = "0.22.5", optional = true } -rust-sitter-macro = { version = "0.4.1", path = "../macro" } +rust-sitter-macro = { version = "0.4.2", path = "../macro" } [dev-dependencies] insta = "1.7.1" diff --git a/tool/Cargo.toml b/tool/Cargo.toml index f76267e..983c281 100644 --- a/tool/Cargo.toml +++ b/tool/Cargo.toml @@ -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.4.1" +version = "0.4.2" authors = ["Shadaj Laddad "] license = "MIT" edition = "2021" @@ -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.4.1", path = "../common" } +rust-sitter-common = { version = "0.4.2", path = "../common" } tempfile = { version = "3.0.0", optional = true } tree-sitter = { package = "tree-sitter", version = "0.22.5", optional = true }