Skip to content

Commit de690fa

Browse files
Release v0.2.0 (#67)
1 parent ab1818a commit de690fa

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

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.2.0](https://github.com/elixir-lang/tree-sitter-elixir/tree/v0.2.0) (2024-04-08)
8+
9+
### Changed
10+
11+
* Required tree-sitter version to 0.21+ ([#66](https://github.com/elixir-lang/tree-sitter-elixir/pull/66))
12+
713
## [v0.1.1](https://github.com/elixir-lang/tree-sitter-elixir/tree/v0.1.1) (2023-12-04)
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.1.1"
4+
version = "0.2.0"
55
keywords = ["incremental", "parsing", "elixir"]
66
categories = ["parsing", "text-editors"]
77
repository = "https://github.com/elixir-lang/tree-sitter-elixir"

Makefile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION := 0.19.1
1+
VERSION := 0.2.0
22

33
# Repository
44
SRC_DIR := src
@@ -29,7 +29,7 @@ PCLIBDIR ?= $(LIBDIR)/pkgconfig
2929
CPPSRC := $(wildcard $(SRC_DIR)/*.cc)
3030

3131
ifeq (, $(CPPSRC))
32-
ADDITIONALLIBS :=
32+
ADDITIONALLIBS :=
3333
else
3434
ADDITIONALLIBS := -lc++
3535
endif

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

0 commit comments

Comments
 (0)