From d97db6d63507eb62c536bcb2c4ac7d70c8ec665e Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Tue, 1 Oct 2024 11:53:40 -0400 Subject: [PATCH] 0.23.2 --- Cargo.lock | Bin 57297 -> 57297 bytes Cargo.toml | 12 ++++++------ Makefile | 2 +- build.zig.zon | 2 +- cli/npm/package.json | 2 +- lib/Cargo.toml | 2 +- lib/binding_web/package.json | 2 +- lib/language/Cargo.toml | 2 +- 8 files changed, 12 insertions(+), 12 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index fa9176a40b956ff1b8ab868cc38524c05654e70d..eb48815691f02d40ea512a4133330a8198baa853 100644 GIT binary patch delta 159 zcmcb(pZVf`<_(wlCo>iVI9M1OB_<~&nj57VBpR3-BpDbOrx=@AnwwY}q!=ZcnkHEo zn;RJ$B&M1tnSemC9m?kG1rKBV!S)^DRTTB*Y7TsJfaHEOQ2*jM6I(aIXrMy{g vN+J`G*|<$%@`7n`P-&6rMT~}%1zp7_&zr6SmQ|emWcp`_?B=&Kp11)3nq4#| delta 158 zcmcb(pZVf`<_(wl8I30wP7JV5N=h;{Hcv`2Ni;S{vNSL@GfGZONl8kyNHaDwNH$0` zHA_l1G)^&2G&MChFfg)6H8-?0H!?6uPBJw~G&G+q$Sk_KT;N6%qalbnId$?>FiUx} u+>}HnAhU6s!sG?h;-JzZ(~BlIdP+>5H(doRr#Sh^^v@8v&2MKsaRUI(u{8t$ 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