Skip to content

Commit 46110a1

Browse files
committed
Release v0.3.4
1 parent a315a86 commit 46110a1

File tree

8 files changed

+13
-14
lines changed

8 files changed

+13
-14
lines changed

.github/workflows/publish.yml

-7
Original file line numberDiff line numberDiff line change
@@ -14,23 +14,16 @@ jobs:
1414
github:
1515
uses: tree-sitter/workflows/.github/workflows/release.yml@main
1616
with:
17-
generate: true
1817
attestations: true
1918
npm:
2019
uses: tree-sitter/workflows/.github/workflows/package-npm.yml@main
2120
secrets:
2221
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
23-
with:
24-
generate: true
2522
crates:
2623
uses: tree-sitter/workflows/.github/workflows/package-crates.yml@main
2724
secrets:
2825
CARGO_REGISTRY_TOKEN: ${{secrets.CARGO_REGISTRY_TOKEN}}
29-
with:
30-
generate: true
3126
pypi:
3227
uses: tree-sitter/workflows/.github/workflows/package-pypi.yml@main
3328
secrets:
3429
PYPI_API_TOKEN: ${{secrets.PYPI_API_TOKEN}}
35-
with:
36-
generate: true

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66

7+
## [v0.3.4](https://github.com/elixir-lang/tree-sitter-elixir/tree/v0.3.4) (2025-02-06)
8+
9+
### Changed
10+
11+
* Changed the built-in queries to use `#any-of?` predicate over `#match?` ([#80](https://github.com/elixir-lang/tree-sitter-elixir/pull/80))
12+
713
## [v0.3.3](https://github.com/elixir-lang/tree-sitter-elixir/tree/v0.3.3) (2024-12-09)
814

915
### Changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "tree-sitter-elixir"
33
description = "Elixir grammar for the tree-sitter parsing library"
4-
version = "0.3.3"
4+
version = "0.3.4"
55
keywords = ["incremental", "parsing", "elixir"]
66
categories = ["parsing", "text-editors"]
77
repository = "https://github.com/elixir-lang/tree-sitter-elixir"

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION := 0.3.3
1+
VERSION := 0.3.4
22

33
# Repository
44
SRC_DIR := src

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tree-sitter-elixir",
3-
"version": "0.3.3",
3+
"version": "0.3.4",
44
"description": "Elixir grammar for the tree-sitter parsing library",
55
"main": "bindings/node",
66
"types": "bindings/node",

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "tree-sitter-elixir"
77
description = "Elixir grammar for tree-sitter"
8-
version = "0.3.3"
8+
version = "0.3.4"
99
keywords = ["incremental", "parsing", "tree-sitter", "elixir"]
1010
classifiers = [
1111
"Intended Audience :: Developers",

tree-sitter.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"metadata": {
15-
"version": "0.3.3",
15+
"version": "0.3.4",
1616
"license": "Apache-2.0",
1717
"description": "Elixir grammar for the tree-sitter parsing library",
1818
"authors": [

0 commit comments

Comments
 (0)