build: bump version to 0.25.1
Some checks failed
CI / checks (push) Waiting to run
CI / sanitize (push) Failing after 12s
CI / build (push) Failing after 14s
Deploy Docs / deploy-docs (push) Has been cancelled
Check WASM Exports / check-wasm-exports (push) Has been cancelled

This commit is contained in:
Amaan Qureshi 2025-02-02 01:56:46 -05:00
parent f20d4b0897
commit f5afe475de
No known key found for this signature in database
GPG key ID: E67890ADC4227273
7 changed files with 12 additions and 12 deletions

BIN
Cargo.lock generated

Binary file not shown.

View file

@ -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" }

View file

@ -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/

View file

@ -1,6 +1,6 @@
.{
.name = "tree-sitter",
.version = "0.25.0",
.version = "0.25.1",
.paths = .{
"build.zig",
"build.zig.zon",

View file

@ -1,6 +1,6 @@
{
"name": "tree-sitter-cli",
"version": "0.25.0",
"version": "0.25.1",
"author": {
"name": "Max Brunsfeld",
"email": "maxbrunsfeld@gmail.com"

View file

@ -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)

View file

@ -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",