From ef5b50786e18c8652399487e3f4833f5b97c2f78 Mon Sep 17 00:00:00 2001 From: Shadaj Laddad Date: Wed, 1 Feb 2023 13:02:58 -0800 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 2fd7533..a07d5d5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -551,7 +551,7 @@ dependencies = [ [[package]] name = "rust-sitter" -version = "0.2.0" +version = "0.2.1" dependencies = [ "insta", "rust-sitter-macro", @@ -562,7 +562,7 @@ dependencies = [ [[package]] name = "rust-sitter-common" -version = "0.2.0" +version = "0.2.1" dependencies = [ "quote", "syn", @@ -570,7 +570,7 @@ dependencies = [ [[package]] name = "rust-sitter-example" -version = "0.2.0" +version = "0.2.1" dependencies = [ "codemap", "codemap-diagnostic", @@ -581,7 +581,7 @@ dependencies = [ [[package]] name = "rust-sitter-macro" -version = "0.2.0" +version = "0.2.1" dependencies = [ "insta", "proc-macro2", @@ -593,7 +593,7 @@ dependencies = [ [[package]] name = "rust-sitter-tool" -version = "0.2.0" +version = "0.2.1" dependencies = [ "cc", "insta", diff --git a/README.md b/README.md index 5c3a8f6..29a296f 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,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.2.0" +rust-sitter = "0.2.1" [build-dependencies] -rust-sitter-tool = "0.2.0" +rust-sitter-tool = "0.2.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 9f1114c..1051d0a 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.2.0" +version = "0.2.1" authors = ["Shadaj Laddad "] edition = "2021" license = "MIT" diff --git a/example/Cargo.toml b/example/Cargo.toml index 134e248..2be6277 100644 --- a/example/Cargo.toml +++ b/example/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "rust-sitter-example" -version = "0.2.0" +version = "0.2.1" authors = ["Shadaj Laddad "] edition = "2021" publish = false diff --git a/macro/Cargo.toml b/macro/Cargo.toml index ee32d72..669c911 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.2.0" +version = "0.2.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.27" -rust-sitter-common = { version= "0.2.0", path = "../common" } +rust-sitter-common = { version= "0.2.1", path = "../common" } [dev-dependencies] insta = "1.7.1" diff --git a/runtime/Cargo.toml b/runtime/Cargo.toml index d0a2fd7..3f0d98b 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.2.0" +version = "0.2.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.2.0", path = "../macro" } +rust-sitter-macro = { version = "0.2.1", path = "../macro" } [dev-dependencies] insta = "1.7.1" diff --git a/tool/Cargo.toml b/tool/Cargo.toml index dec177b..c52a692 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.2.0" +version = "0.2.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.2.0", path = "../common" } +rust-sitter-common = { version = "0.2.1", path = "../common" } tempfile = { version = "3.0.0", optional = true } tree-sitter = { package = "tree-sitter", version = "0.20.9", optional = true }