Skip to content

Commit

Permalink
Release v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
jonatanklosko committed Jan 16, 2025
1 parent 76d4b3e commit 625d0e1
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 6 deletions.
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.0

- Update tree-sitter requirement. The Rust crate now depends on tree-sitter-language

## 0.7.0
- Support HEEx expressions `{...}` within the body of a tag, thanks @kevinschweikert and @jonatanklosko!
- Support NEEx template highlighting, thanks @bcardarella!
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.7.0"
VERSION "0.8.0"
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.7.0"
version = "0.8.0"
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.7.0
VERSION := 0.8.0

# 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.7.0",
"version": "0.8.0",
"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.7.0"
version = "0.8.0"
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.7.0",
"version": "0.8.0",
"license": "MIT",
"description": "Tree-sitter grammar for HEEx files",
"authors": [
Expand Down

0 comments on commit 625d0e1

Please sign in to comment.