diff --git a/CHANGELOG.md b/CHANGELOG.md index 815eda1..bd1b96e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v0.23.2 (Oct 2 2024) + +## [`tree-sitter`] sync + +[`v0.23.2`](https://github.com/tree-sitter/tree-sitter/releases/tag/v0.23.2) + # v0.23.0 (Sep 8 2024) ## [`tree-sitter`] sync diff --git a/MODULE.bazel b/MODULE.bazel index 268ed58..8ba3c33 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -16,7 +16,7 @@ module( name = "tree-sitter-bazel", - version = "0.23.0", + version = "0.23.2", compatibility_level = 1, repo_name = "tree-sitter-bazel", ) diff --git a/VERSION b/VERSION index ca222b7..fda96dc 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.23.0 +0.23.2 diff --git a/repositories.bzl b/repositories.bzl index 662d20d..813bb9f 100644 --- a/repositories.bzl +++ b/repositories.bzl @@ -16,10 +16,10 @@ load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive") load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe") # Default tree-sitter version to use. -DEFAULT_VERSION = "0.23.0" +DEFAULT_VERSION = "0.23.2" # SHA-256 sum of the default tree-sitter version GitHub archive. -DEFAULT_SHA256SUM = "6403b361b0014999e96f61b9c84d6950d42f0c7d6e806be79382e0232e48a11b" +DEFAULT_SHA256SUM = "ad81a585e399093bcba2fab179bf8971fdebaf701758af20d84d21f24fdf1b50" # Integrity in Subresource Integrity format. # This can be obtained by doing: @@ -27,7 +27,7 @@ DEFAULT_SHA256SUM = "6403b361b0014999e96f61b9c84d6950d42f0c7d6e806be79382e0232e4 # export DGST=384 # curl -L "${URL}" -s | shasum -a "${DGST}" | cut -f1 -d' ' | xxd -r -p | base64 | (echo -ne "sha${DGST}-" && "cat" -) # ``` -DEFAULT_INTEGRITY = "sha384-BqdQHBdTmu90N+n2D0hPyZXa27BFsSCJnn0azvFT0lpdPWYHe5ohBUQA+aHRKLsW" +DEFAULT_INTEGRITY = "sha384-p6yy9VLLVC++YX6P6R2arK4Gg8a+0oadLRKytOfF7EEp+g0zpggh8pQkPAfzkzmj" # Format for URLs to GitHub archives. _URL_FMT = "https://github.com/tree-sitter/tree-sitter/archive/refs/tags/v{version}.tar.gz" diff --git a/version.bzl b/version.bzl index 4708024..e81c450 100644 --- a/version.bzl +++ b/version.bzl @@ -14,4 +14,4 @@ """A module representing the version of tree-sitter""" -VERSION = "0.23.0" +VERSION = "0.23.2"