diff --git a/Cargo.lock b/Cargo.lock index 41a5f0e..87832fe 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -52,7 +52,7 @@ dependencies = [ [[package]] name = "tree-sitter-kotlin" -version = "0.3.1" +version = "0.3.2" dependencies = [ "cc", "tree-sitter", diff --git a/Cargo.toml b/Cargo.toml index a8ddad1..4560c50 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.1" +version = "0.3.2" keywords = ["incremental", "parsing", "kotlin"] categories = ["parsing", "text-editors"] repository = "https://github.com/fwcd/tree-sitter-kotlin" diff --git a/Makefile b/Makefile index 22c81bc..baed165 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.3.1 +VERSION := 0.3.2 # Repository SRC_DIR := src diff --git a/bindings/rust/README.md b/bindings/rust/README.md index eab3cbf..f00369d 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.1" +tree-sitter-kotlin = "0.3.2" ``` 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 3f36ba3..64a85f4 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tree-sitter-kotlin", - "version": "0.3.1", + "version": "0.3.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "tree-sitter-kotlin", - "version": "0.3.1", + "version": "0.3.2", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index e294523..c6d6284 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-kotlin", - "version": "0.3.1", + "version": "0.3.2", "description": "Tree-Sitter grammar for Kotlin", "main": "bindings/node", "scripts": {