Skip to content

Commit 1a983b7

Browse files
committed
0.24.5
1 parent ede1960 commit 1a983b7

File tree

8 files changed

+21
-21
lines changed

8 files changed

+21
-21
lines changed

Cargo.lock

Lines changed: 8 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ members = [
1313
resolver = "2"
1414

1515
[workspace.package]
16-
version = "0.24.4"
16+
version = "0.24.5"
1717
authors = ["Max Brunsfeld <[email protected]>"]
1818
edition = "2021"
1919
rust-version = "1.74.1"
@@ -145,9 +145,9 @@ walkdir = "2.5.0"
145145
wasmparser = "0.217.0"
146146
webbrowser = "1.0.2"
147147

148-
tree-sitter = { version = "0.24.4", path = "./lib" }
149-
tree-sitter-generate = { version = "0.24.4", path = "./cli/generate" }
150-
tree-sitter-loader = { version = "0.24.4", path = "./cli/loader" }
151-
tree-sitter-config = { version = "0.24.4", path = "./cli/config" }
152-
tree-sitter-highlight = { version = "0.24.4", path = "./highlight" }
153-
tree-sitter-tags = { version = "0.24.4", path = "./tags" }
148+
tree-sitter = { version = "0.24.5", path = "./lib" }
149+
tree-sitter-generate = { version = "0.24.5", path = "./cli/generate" }
150+
tree-sitter-loader = { version = "0.24.5", path = "./cli/loader" }
151+
tree-sitter-config = { version = "0.24.5", path = "./cli/config" }
152+
tree-sitter-highlight = { version = "0.24.5", path = "./highlight" }
153+
tree-sitter-tags = { version = "0.24.5", path = "./tags" }

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ ifeq ($(OS),Windows_NT)
22
$(error Windows is not supported)
33
endif
44

5-
VERSION := 0.24.4
5+
VERSION := 0.24.5
66
DESCRIPTION := An incremental parsing system for programming tools
77
HOMEPAGE_URL := https://tree-sitter.github.io/tree-sitter/
88

build.zig.zon

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.{
22
.name = "tree-sitter",
3-
.version = "0.24.4",
3+
.version = "0.24.5",
44
.paths = .{
55
"build.zig",
66
"build.zig.zon",

cli/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tree-sitter-cli",
3-
"version": "0.24.4",
3+
"version": "0.24.5",
44
"author": "Max Brunsfeld",
55
"license": "MIT",
66
"repository": {

lib/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.13)
22

33
project(tree-sitter
4-
VERSION "0.24.4"
4+
VERSION "0.24.5"
55
DESCRIPTION "An incremental parsing system for programming tools"
66
HOMEPAGE_URL "https://tree-sitter.github.io/tree-sitter/"
77
LANGUAGES C)

lib/binding_web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web-tree-sitter",
3-
"version": "0.24.4",
3+
"version": "0.24.5",
44
"description": "Tree-sitter bindings for the web",
55
"main": "tree-sitter.js",
66
"types": "tree-sitter-web.d.ts",

lib/language/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tree-sitter-language"
33
description = "The tree-sitter Language type, used by the library and by language implementations"
4-
version = "0.1.2"
4+
version = "0.1.3"
55
authors.workspace = true
66
edition.workspace = true
77
rust-version.workspace = true

0 commit comments

Comments
 (0)