diff --git a/Cargo.lock b/Cargo.lock index 2d70f5c..a27cad1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -575,7 +575,7 @@ dependencies = [ [[package]] name = "tree-house-bindings" -version = "0.2.1" +version = "0.2.2" dependencies = [ "cc", "libloading", diff --git a/bindings/CHANGELOG.md b/bindings/CHANGELOG.md index fc1cc00..a727bd0 100644 --- a/bindings/CHANGELOG.md +++ b/bindings/CHANGELOG.md @@ -7,6 +7,20 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 +## [v0.2.2] - 2025-08-31 + +### Added + +* Added an optional feature to load `Grammar`s from [`LanguageFn`](https://docs.rs/tree-sitter-language/0.1.5/tree_sitter_language/struct.LanguageFn.html) from the [`tree-sitter-language` crate](https://crates.io/crates/tree-sitter-language) ([#24](https://github.com/helix-editor/tree-house/pull/24)) + +### Updated + +* Updated the tree-sitter C library to v0.25.8 ([da576cf74e04](https://github.com/helix-editor/tree-house/commit/da576cf74e04)) + +### Fixed + +* Fixed message for the impossible pattern error message in query analysis failures. ([9fe0be04c306](https://github.com/helix-editor/tree-house/commit/9fe0be04c306)) + ## [v0.2.1] - 2025-07-12 ### Added diff --git a/bindings/Cargo.toml b/bindings/Cargo.toml index e264e5b..da8475c 100644 --- a/bindings/Cargo.toml +++ b/bindings/Cargo.toml @@ -2,7 +2,7 @@ name = "tree-house-bindings" description = "Homey Rust bindings for the tree-sitter C library" authors = ["Pascal Kuthe "] -version = "0.2.1" +version = "0.2.2" edition = "2021" license = "MPL-2.0" repository = "https://github.com/helix-editor/tree-house"