From bbaa67a180cfe0c943e50c55130918be8efb20bd Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Wed, 26 Jul 2023 05:12:49 -0400 Subject: [PATCH] 0.20.0 --- Cargo.toml | 7 ++++--- Makefile | 2 +- bindings/rust/README.md | 4 ++-- package.json | 4 ++-- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3af34c1a..afd9f044 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-go" -description = "Go grammar for the tree-sitter parsing library" -version = "0.19.1" +description = "Go grammar for tree-sitter" +version = "0.20.0" authors = [ "Max Brunsfeld ", "Douglas Creager ", @@ -12,6 +12,7 @@ keywords = ["incremental", "parsing", "go"] categories = ["parsing", "text-editors"] repository = "https://github.com/tree-sitter/tree-sitter-go" edition = "2018" +autoexamples = false build = "bindings/rust/build.rs" include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] @@ -20,7 +21,7 @@ include = ["bindings/rust/*", "grammar.js", "queries/*", "src/*"] path = "bindings/rust/lib.rs" [dependencies] -tree-sitter = ">= 0.19, < 0.21" +tree-sitter = ">= 0.20, < 0.21" [build-dependencies] cc = "1.0" diff --git a/Makefile b/Makefile index 0d50d2aa..50a1f278 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.19.1 +VERSION := 0.20.0 # Repository SRC_DIR := src diff --git a/bindings/rust/README.md b/bindings/rust/README.md index 0eeaf6c1..5cd69e59 100644 --- a/bindings/rust/README.md +++ b/bindings/rust/README.md @@ -8,8 +8,8 @@ way.) ```toml [dependencies] -tree-sitter = "0.20" -tree-sitter-go = "0.19" +tree-sitter = "0.20.10" +tree-sitter-go = "0.20.0" ``` Typically, you will use the [language][language] function to add this diff --git a/package.json b/package.json index 28083b19..dd486b1c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-go", - "version": "0.19.1", + "version": "0.20.0", "description": "Go grammar for tree-sitter", "main": "bindings/node", "keywords": [ @@ -19,7 +19,7 @@ "devDependencies": { "eslint": "^8.45.0", "eslint-config-google": "^0.14.0", - "tree-sitter-cli": "^0.20.6" + "tree-sitter-cli": "^0.20.8" }, "scripts": { "build": "tree-sitter generate && node-gyp build",