diff --git a/Cargo.lock b/Cargo.lock index cb945c1..a007f54 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -52,7 +52,7 @@ dependencies = [ [[package]] name = "tree-sitter-kotlin" -version = "0.3.3" +version = "0.3.4" dependencies = [ "cc", "tree-sitter", diff --git a/Cargo.toml b/Cargo.toml index 7ff7226..3ab2d60 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.3" +version = "0.3.4" keywords = ["incremental", "parsing", "kotlin"] categories = ["parsing", "text-editors"] repository = "https://github.com/fwcd/tree-sitter-kotlin" diff --git a/Makefile b/Makefile index 6ba51c1..174f696 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.3.3 +VERSION := 0.3.4 # Repository SRC_DIR := src diff --git a/bindings/rust/README.md b/bindings/rust/README.md index 23cdc7f..e65f438 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.3" +tree-sitter-kotlin = "0.3.4" ``` 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 6af61db..7c7e710 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tree-sitter-kotlin", - "version": "0.3.3", + "version": "0.3.4", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tree-sitter-kotlin", - "version": "0.3.3", + "version": "0.3.4", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 295531f..8b5db59 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-kotlin", - "version": "0.3.3", + "version": "0.3.4", "description": "Tree-Sitter grammar for Kotlin", "main": "bindings/node", "scripts": {