diff --git a/CMakeLists.txt b/CMakeLists.txt index 9781db695..36758b2d9 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.13) project(tree-sitter - VERSION "0.27.0" + VERSION "0.28.0" DESCRIPTION "An incremental parsing system for programming tools" HOMEPAGE_URL "https://tree-sitter.github.io/tree-sitter/" LANGUAGES C) diff --git a/Cargo.lock b/Cargo.lock index 69394b447..9dd9bac55 100644 Binary files a/Cargo.lock and b/Cargo.lock differ diff --git a/Cargo.toml b/Cargo.toml index 511d351ec..d1ed6e043 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,7 +22,7 @@ keywords = [ "incremental", "parsing" ] license = "MIT" repository = "https://github.com/tree-sitter/tree-sitter" rust-version = "1.90" -version = "0.27.0" +version = "0.28.0" [workspace.lints.clippy] cargo = { level = "warn", priority = -1 } @@ -128,11 +128,11 @@ walkdir = "2.5.0" wasmparser = "0.244.0" webbrowser = "1.2.1" -tree-sitter = { path = "./lib", version = "0.27.0" } -tree-sitter-config = { path = "./crates/config", version = "0.27.0" } -tree-sitter-generate = { default-features = false, path = "./crates/generate", version = "0.27.0" } -tree-sitter-highlight = { path = "./crates/highlight", version = "0.27.0" } -tree-sitter-loader = { path = "./crates/loader", version = "0.27.0" } -tree-sitter-tags = { path = "./crates/tags", version = "0.27.0" } +tree-sitter = { path = "./lib", version = "0.28.0" } +tree-sitter-config = { path = "./crates/config", version = "0.28.0" } +tree-sitter-generate = { default-features = false, path = "./crates/generate", version = "0.28.0" } +tree-sitter-highlight = { path = "./crates/highlight", version = "0.28.0" } +tree-sitter-loader = { path = "./crates/loader", version = "0.28.0" } +tree-sitter-tags = { path = "./crates/tags", version = "0.28.0" } tree-sitter-language = { path = "./crates/language", version = "0.1.8" } diff --git a/Makefile b/Makefile index 6e2392f22..98c8f2742 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION := 0.27.0 +VERSION := 0.28.0 DESCRIPTION := An incremental parsing system for programming tools HOMEPAGE_URL := https://tree-sitter.github.io/tree-sitter/ diff --git a/build.zig.zon b/build.zig.zon index d4f7a7dc8..647337f92 100644 --- a/build.zig.zon +++ b/build.zig.zon @@ -1,7 +1,7 @@ .{ .name = .tree_sitter, .fingerprint = 0x841224b447ac0d4f, - .version = "0.27.0", + .version = "0.28.0", .minimum_zig_version = "0.16.0", .paths = .{ "build.zig", diff --git a/crates/cli/npm/package.json b/crates/cli/npm/package.json index d49abd46d..ef066e911 100644 --- a/crates/cli/npm/package.json +++ b/crates/cli/npm/package.json @@ -1,6 +1,6 @@ { "name": "tree-sitter-cli", - "version": "0.27.0", + "version": "0.28.0", "author": { "name": "Max Brunsfeld", "email": "maxbrunsfeld@gmail.com" diff --git a/flake.nix b/flake.nix index d727843ab..32e61737a 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ eachSystem = lib.genAttrs systems; pkgsFor = inputs.nixpkgs.legacyPackages; - version = "0.27.0"; + version = "0.28.0"; fs = lib.fileset; src = fs.toSource { diff --git a/lib/binding_web/package.json b/lib/binding_web/package.json index b3dbb48a2..3235ad2e5 100644 --- a/lib/binding_web/package.json +++ b/lib/binding_web/package.json @@ -1,6 +1,6 @@ { "name": "web-tree-sitter", - "version": "0.27.0", + "version": "0.28.0", "description": "Tree-sitter bindings for the web", "repository": { "type": "git", diff --git a/test/fixtures/rust_wasm_web/Cargo.lock b/test/fixtures/rust_wasm_web/Cargo.lock index b182d4629..1760f3a9c 100644 Binary files a/test/fixtures/rust_wasm_web/Cargo.lock and b/test/fixtures/rust_wasm_web/Cargo.lock differ