mirror of
https://github.com/tree-sitter/tree-sitter.git
synced 2026-09-10 07:36:22 -04:00
build: bump version to 0.25.1
This commit is contained in:
parent
f20d4b0897
commit
f5afe475de
BIN
Cargo.lock
generated
BIN
Cargo.lock
generated
Binary file not shown.
14
Cargo.toml
14
Cargo.toml
|
|
@ -13,7 +13,7 @@ members = [
|
|||
resolver = "2"
|
||||
|
||||
[workspace.package]
|
||||
version = "0.25.0"
|
||||
version = "0.25.1"
|
||||
authors = [
|
||||
"Max Brunsfeld <maxbrunsfeld@gmail.com>",
|
||||
"Amaan Qureshi <amaanq12@gmail.com>",
|
||||
|
|
@ -149,9 +149,9 @@ walkdir = "2.5.0"
|
|||
wasmparser = "0.224.0"
|
||||
webbrowser = "1.0.3"
|
||||
|
||||
tree-sitter = { version = "0.25.0", path = "./lib" }
|
||||
tree-sitter-generate = { version = "0.25.0", path = "./cli/generate" }
|
||||
tree-sitter-loader = { version = "0.25.0", path = "./cli/loader" }
|
||||
tree-sitter-config = { version = "0.25.0", path = "./cli/config" }
|
||||
tree-sitter-highlight = { version = "0.25.0", path = "./highlight" }
|
||||
tree-sitter-tags = { version = "0.25.0", path = "./tags" }
|
||||
tree-sitter = { version = "0.25.1", path = "./lib" }
|
||||
tree-sitter-generate = { version = "0.25.1", path = "./cli/generate" }
|
||||
tree-sitter-loader = { version = "0.25.1", path = "./cli/loader" }
|
||||
tree-sitter-config = { version = "0.25.1", path = "./cli/config" }
|
||||
tree-sitter-highlight = { version = "0.25.1", path = "./highlight" }
|
||||
tree-sitter-tags = { version = "0.25.1", path = "./tags" }
|
||||
|
|
|
|||
2
Makefile
2
Makefile
|
|
@ -2,7 +2,7 @@ ifeq ($(OS),Windows_NT)
|
|||
$(error Windows is not supported)
|
||||
endif
|
||||
|
||||
VERSION := 0.25.0
|
||||
VERSION := 0.25.1
|
||||
DESCRIPTION := An incremental parsing system for programming tools
|
||||
HOMEPAGE_URL := https://tree-sitter.github.io/tree-sitter/
|
||||
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
.{
|
||||
.name = "tree-sitter",
|
||||
.version = "0.25.0",
|
||||
.version = "0.25.1",
|
||||
.paths = .{
|
||||
"build.zig",
|
||||
"build.zig.zon",
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "tree-sitter-cli",
|
||||
"version": "0.25.0",
|
||||
"version": "0.25.1",
|
||||
"author": {
|
||||
"name": "Max Brunsfeld",
|
||||
"email": "maxbrunsfeld@gmail.com"
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
cmake_minimum_required(VERSION 3.13)
|
||||
|
||||
project(tree-sitter
|
||||
VERSION "0.25.0"
|
||||
VERSION "0.25.1"
|
||||
DESCRIPTION "An incremental parsing system for programming tools"
|
||||
HOMEPAGE_URL "https://tree-sitter.github.io/tree-sitter/"
|
||||
LANGUAGES C)
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "web-tree-sitter",
|
||||
"version": "0.25.0",
|
||||
"version": "0.25.1",
|
||||
"description": "Tree-sitter bindings for the web",
|
||||
"repository": "https://github.com/tree-sitter/tree-sitter",
|
||||
"homepage": "https://github.com/tree-sitter/tree-sitter/tree/master/lib/binding_web",
|
||||
|
|
|
|||
Loading…
Reference in a new issue