From 9145c623dabe954662e28550c24f270d6df74f83 Mon Sep 17 00:00:00 2001 From: fwcd Date: Thu, 14 Mar 2024 00:25:52 +0100 Subject: [PATCH] Bump version to 0.3.6 --- 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 d6b04b2..2a48adb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -52,7 +52,7 @@ dependencies = [ [[package]] name = "tree-sitter-kotlin" -version = "0.3.5" +version = "0.3.6" dependencies = [ "cc", "tree-sitter", diff --git a/Cargo.toml b/Cargo.toml index 9ba4ea6..146b27a 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.5" +version = "0.3.6" keywords = ["incremental", "parsing", "kotlin"] categories = ["parsing", "text-editors"] repository = "https://github.com/fwcd/tree-sitter-kotlin" diff --git a/Makefile b/Makefile index 935812a..e686f4f 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.3.5 +VERSION := 0.3.6 # Repository SRC_DIR := src diff --git a/bindings/rust/README.md b/bindings/rust/README.md index 2df2ff6..efe9abf 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.20" -tree-sitter-kotlin = "0.3.5" +tree-sitter-kotlin = "0.3.6" ``` 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 2e9d566..1cf89cf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tree-sitter-kotlin", - "version": "0.3.5", + "version": "0.3.6", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tree-sitter-kotlin", - "version": "0.3.5", + "version": "0.3.6", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 2a86b22..90db673 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-kotlin", - "version": "0.3.5", + "version": "0.3.6", "description": "Tree-sitter grammar for Kotlin", "main": "bindings/node", "scripts": {