Skip to content

Commit 02a6f7f

Browse files
committed
Release v0.3.3
1 parent 7ec4b5a commit 02a6f7f

File tree

6 files changed

+13
-6
lines changed

6 files changed

+13
-6
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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.3](https://github.com/elixir-lang/tree-sitter-elixir/tree/v0.3.3) (2024-12-09)
8+
9+
### Changed
10+
11+
* The parser now accepts anonymous functions with no clauses ([#78](https://github.com/elixir-lang/tree-sitter-elixir/pull/78))
12+
* Moved parser information to tree-sitter.json ([#79](https://github.com/elixir-lang/tree-sitter-elixir/pull/79))
13+
714
## [v0.3.2](https://github.com/elixir-lang/tree-sitter-elixir/tree/v0.3.2) (2024-12-02)
815

916
### Added

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.2"
4+
version = "0.3.3"
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.2
1+
VERSION := 0.3.3
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.2",
3+
"version": "0.3.3",
44
"description": "Elixir grammar for the tree-sitter parsing library",
55
"main": "bindings/node",
66
"types": "bindings/node",

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.2",
15+
"version": "0.3.3",
1616
"license": "Apache-2.0",
1717
"description": "Elixir grammar for the tree-sitter parsing library",
1818
"authors": [

0 commit comments

Comments
 (0)