From c9cb8504b81684375e7beb8907517dbd6947a1be Mon Sep 17 00:00:00 2001 From: fwcd Date: Wed, 8 May 2024 00:45:16 +0200 Subject: [PATCH] Bump version to 0.3.7 --- Cargo.lock | 2 +- Cargo.toml | 2 +- Makefile | 2 +- bindings/rust/README.md | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 78472cc..2c625ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -64,7 +64,7 @@ dependencies = [ [[package]] name = "tree-sitter-kotlin" -version = "0.3.6" +version = "0.3.7" dependencies = [ "cc", "tree-sitter", diff --git a/Cargo.toml b/Cargo.toml index 2ae6a34..61ae212 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-kotlin" description = "Kotlin grammar for the tree-sitter parsing library" -version = "0.3.6" +version = "0.3.7" keywords = ["incremental", "parsing", "kotlin"] categories = ["parsing", "text-editors"] repository = "https://github.com/fwcd/tree-sitter-kotlin" diff --git a/Makefile b/Makefile index e686f4f..951bb6d 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.3.6 +VERSION := 0.3.7 # Repository SRC_DIR := src diff --git a/bindings/rust/README.md b/bindings/rust/README.md index 8331664..d97114f 100644 --- a/bindings/rust/README.md +++ b/bindings/rust/README.md @@ -4,7 +4,7 @@ This crate provides a Kotlin grammar for the [tree-sitter](https://tree-sitter.g ```toml tree-sitter = "0.22" -tree-sitter-kotlin = "0.3.6" +tree-sitter-kotlin = "0.3.7" ``` Typically, you will use the `language` function to add this grammar to a tree-sitter [`Parser`](https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html), and then use the parser to parse some code: diff --git a/package-lock.json b/package-lock.json index 1cf89cf..94d2826 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tree-sitter-kotlin", - "version": "0.3.6", + "version": "0.3.7", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tree-sitter-kotlin", - "version": "0.3.6", + "version": "0.3.7", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 90db673..5da3456 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-kotlin", - "version": "0.3.6", + "version": "0.3.7", "description": "Tree-sitter grammar for Kotlin", "main": "bindings/node", "scripts": {