Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release v0.8.1 #51

Merged
merged 1 commit into from
Jan 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 0.8.1

- Fix edge cases where expression includes delimiters

## 0.8.0

- Update tree-sitter requirement. The Rust crate now depends on tree-sitter-language
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.13)

project(tree-sitter-heex
VERSION "0.8.0"
VERSION "0.8.1"
DESCRIPTION "Tree-sitter grammar for HEEx files"
HOMEPAGE_URL "https://github.com/phoenixframework/tree-sitter-heex"
LANGUAGES C)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tree-sitter-heex"
description = "heex grammar for the tree-sitter parsing library"
version = "0.8.0"
version = "0.8.1"
keywords = ["incremental", "parsing", "heex"]
categories = ["parsing", "text-editors"]
repository = "https://github.com/phoenixframework/tree-sitter-heex"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ endif

LANGUAGE_NAME := tree-sitter-heex
HOMEPAGE_URL := https://github.com/phoenixframework/tree-sitter-heex
VERSION := 0.8.0
VERSION := 0.8.1

# repository
SRC_DIR := src
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "tree-sitter-heex",
"version": "0.8.0",
"version": "0.8.1",
"description": "Tree-sitter grammar for HEEx files",
"main": "bindings/node",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "tree-sitter-heex"
description = "Tree-sitter grammar for HEEx files"
version = "0.8.0"
version = "0.8.1"
keywords = ["incremental", "parsing", "tree-sitter", "heex"]
classifiers = [
"Intended Audience :: Developers",
Expand Down
2 changes: 1 addition & 1 deletion tree-sitter.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
}
],
"metadata": {
"version": "0.8.0",
"version": "0.8.1",
"license": "MIT",
"description": "Tree-sitter grammar for HEEx files",
"authors": [
Expand Down