Skip to content

Commit

Permalink
Fix #19: update to 0.23.2. (#20)
Browse files Browse the repository at this point in the history
  • Loading branch information
zadlg committed Oct 4, 2024
1 parent f2526e0 commit 0a58eb2
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.23.0
0.23.2
6 changes: 3 additions & 3 deletions repositories.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ 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:
# ```shell
# 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"
Expand Down
2 changes: 1 addition & 1 deletion version.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

"""A module representing the version of tree-sitter"""

VERSION = "0.23.0"
VERSION = "0.23.2"

0 comments on commit 0a58eb2

Please sign in to comment.