diff --git a/Cargo.lock b/Cargo.lock index fa9176a40..eb4881569 100644 Binary files a/Cargo.lock and b/Cargo.lock differ diff --git a/Cargo.toml b/Cargo.toml index d76ec79da..ddaf5b56a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ resolver = "2" [workspace.package] -version = "0.23.1" +version = "0.23.2" authors = ["Max Brunsfeld "] edition = "2021" rust-version = "1.74.1" @@ -87,8 +87,8 @@ walkdir = "2.5.0" wasmparser = "0.215.0" webbrowser = "1.0.2" -tree-sitter = { version = "0.23.1", path = "./lib" } -tree-sitter-loader = { version = "0.23.1", path = "./cli/loader" } -tree-sitter-config = { version = "0.23.1", path = "./cli/config" } -tree-sitter-highlight = { version = "0.23.1", path = "./highlight" } -tree-sitter-tags = { version = "0.23.1", path = "./tags" } +tree-sitter = { version = "0.23.2", path = "./lib" } +tree-sitter-loader = { version = "0.23.2", path = "./cli/loader" } +tree-sitter-config = { version = "0.23.2", path = "./cli/config" } +tree-sitter-highlight = { version = "0.23.2", path = "./highlight" } +tree-sitter-tags = { version = "0.23.2", path = "./tags" } diff --git a/Makefile b/Makefile index 892e13047..57ac8ae01 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ ifeq ($(OS),Windows_NT) $(error Windows is not supported) endif -VERSION := 0.23.1 +VERSION := 0.23.2 # install directory layout PREFIX ?= /usr/local diff --git a/build.zig.zon b/build.zig.zon index 5a00f9cff..dbebf231b 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,6 +1,6 @@ .{ .name = "tree-sitter", - .version = "0.23.1", + .version = "0.23.2", .paths = .{ "build.zig", "build.zig.zon", diff --git a/cli/npm/package.json b/cli/npm/package.json index d33b43b56..33c1194fa 100644 --- a/cli/npm/package.json +++ b/cli/npm/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-cli", - "version": "0.23.1", + "version": "0.23.2", "author": "Max Brunsfeld", "license": "MIT", "repository": { diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 2884d411a..a0f042591 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml @@ -33,7 +33,7 @@ wasm = ["wasmtime-c-api"] [dependencies] regex = { version = "1.10.6", default-features = false, features = ["unicode"] } regex-syntax = { version = "0.8.4", default-features = false } -tree-sitter-language = { version = "0.1", path = "language" } +tree-sitter-language = { version = "0.1.1", path = "language" } [dependencies.wasmtime-c-api] version = "24.0.0" diff --git a/lib/binding_web/package.json b/lib/binding_web/package.json index 60ef0d4c1..755f1be7c 100644 --- a/lib/binding_web/package.json +++ b/lib/binding_web/package.json @@ -1,6 +1,6 @@ { "name": "web-tree-sitter", - "version": "0.23.1", + "version": "0.23.2", "description": "Tree-sitter bindings for the web", "main": "tree-sitter.js", "types": "tree-sitter-web.d.ts", diff --git a/lib/language/Cargo.toml b/lib/language/Cargo.toml index 55361fd05..40524b6f0 100644 --- a/lib/language/Cargo.toml +++ b/lib/language/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "tree-sitter-language" description = "The tree-sitter Language type, used by the library and by language implementations" -version = "0.1.0" +version = "0.1.1" authors.workspace = true edition.workspace = true rust-version.workspace = true