From 8b4dcb2627ea3acee6a684bee0b10602face96bf Mon Sep 17 00:00:00 2001 From: Shadaj Laddad Date: Sat, 4 Nov 2023 17:50:31 -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 6a7653b..7125021 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -561,7 +561,7 @@ dependencies = [ [[package]] name = "rust-sitter" -version = "0.3.4" +version = "0.4.1" dependencies = [ "insta", "rust-sitter-macro", @@ -572,7 +572,7 @@ dependencies = [ [[package]] name = "rust-sitter-common" -version = "0.3.4" +version = "0.4.1" dependencies = [ "quote", "syn", @@ -580,7 +580,7 @@ dependencies = [ [[package]] name = "rust-sitter-example" -version = "0.3.4" +version = "0.4.1" dependencies = [ "codemap", "codemap-diagnostic", @@ -592,7 +592,7 @@ dependencies = [ [[package]] name = "rust-sitter-macro" -version = "0.3.4" +version = "0.4.1" dependencies = [ "insta", "proc-macro2", @@ -604,7 +604,7 @@ dependencies = [ [[package]] name = "rust-sitter-tool" -version = "0.3.4" +version = "0.4.1" dependencies = [ "cc", "insta", diff --git a/README.md b/README.md index 9b7e5d9..6b47b66 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.3.4" +rust-sitter = "0.4.1" [build-dependencies] -rust-sitter-tool = "0.3.4" +rust-sitter-tool = "0.4.1" ``` _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 14cb6d2..660a017 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.3.4" +version = "0.4.1" authors = ["Shadaj Laddad "] edition = "2021" license = "MIT" diff --git a/example/Cargo.toml b/example/Cargo.toml index 83902aa..e4da297 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-sitter-example" -version = "0.3.4" +version = "0.4.1" authors = ["Shadaj Laddad "] edition = "2021" publish = false diff --git a/macro/Cargo.toml b/macro/Cargo.toml index 9c4455b..d9afa0f 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.3.4" +version = "0.4.1" 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.3.4", path = "../common" } +rust-sitter-common = { version= "0.4.1", path = "../common" } [dev-dependencies] insta = "1.7.1" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index 20c1115..5bf3eff 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.3.4" +version = "0.4.1" 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.20.9", optional = true } tree-sitter-runtime-standard = { package = "tree-sitter", version = "0.20.9", optional = true } -rust-sitter-macro = { version = "0.3.4", path = "../macro" } +rust-sitter-macro = { version = "0.4.1", path = "../macro" } [dev-dependencies] insta = "1.7.1" diff --git a/tool/Cargo.toml b/tool/Cargo.toml index f181897..cfc44b9 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.3.4" +version = "0.4.1" 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.3.4", path = "../common" } +rust-sitter-common = { version = "0.4.1", path = "../common" } tempfile = { version = "3.0.0", optional = true } tree-sitter = { package = "tree-sitter", version = "0.20.9", optional = true }