mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-09 23:26:20 -04:00
0.23.2
This commit is contained in:
parent
78c41e3ced
commit
d97db6d635
BIN
Cargo.lock
generated
BIN
Cargo.lock
generated
Binary file not shown.
12
Cargo.toml
12
Cargo.toml
|
|
@ -13,7 +13,7 @@ members = [
|
|||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
version = "0.23.1"
|
||||
version = "0.23.2"
|
||||
authors = ["Max Brunsfeld <maxbrunsfeld@gmail.com>"]
|
||||
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" }
|
||||
|
|
|
|||
2
Makefile
2
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
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
.{
|
||||
.name = "tree-sitter",
|
||||
.version = "0.23.1",
|
||||
.version = "0.23.2",
|
||||
.paths = .{
|
||||
"build.zig",
|
||||
"build.zig.zon",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tree-sitter-cli",
|
||||
"version": "0.23.1",
|
||||
"version": "0.23.2",
|
||||
"author": "Max Brunsfeld",
|
||||
"license": "MIT",
|
||||
"repository": {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue