From f1d2ef591786f32c496c901c8ad344901ab3055c Mon Sep 17 00:00:00 2001 From: Hendrik van Antwerpen Date: Wed, 6 Mar 2024 17:03:04 +0100 Subject: [PATCH] Release tree-sitter-stack-graphs-typescript v0.2.0 --- .../CHANGELOG.md | 14 +++++++++++++- .../tree-sitter-stack-graphs-typescript/Cargo.toml | 2 +- .../tree-sitter-stack-graphs-typescript/README.md | 2 +- 3 files changed, 15 insertions(+), 3 deletions(-) diff --git a/languages/tree-sitter-stack-graphs-typescript/CHANGELOG.md b/languages/tree-sitter-stack-graphs-typescript/CHANGELOG.md index e5b478f09..a23db2f0e 100644 --- a/languages/tree-sitter-stack-graphs-typescript/CHANGELOG.md +++ b/languages/tree-sitter-stack-graphs-typescript/CHANGELOG.md @@ -5,7 +5,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## Unreleased +## v0.2.0 -- 2024-03-06 + +The `tree-sitter-stack-graphs` is updated to `v0.8`. + +### Added + +- An experimental VSCode LSP plugin that supports code navigation based on the stack graph rules. _Purely an experiment, not ready for serious use!_ Requires the `lsp` feature to be enabled. + +### Changed + +- Various improvements to the rules for imports and packages. + +## v0.1.0 -- 2023-01-27 ### Added diff --git a/languages/tree-sitter-stack-graphs-typescript/Cargo.toml b/languages/tree-sitter-stack-graphs-typescript/Cargo.toml index be86d78cd..822eeb498 100644 --- a/languages/tree-sitter-stack-graphs-typescript/Cargo.toml +++ b/languages/tree-sitter-stack-graphs-typescript/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "tree-sitter-stack-graphs-typescript" -version = "0.1.0" +version = "0.2.0" description = "Stack graphs definition for TypeScript using tree-sitter-typescript" readme = "README.md" keywords = ["tree-sitter", "stack-graphs", "typescript"] diff --git a/languages/tree-sitter-stack-graphs-typescript/README.md b/languages/tree-sitter-stack-graphs-typescript/README.md index fada7e2df..9b6c82069 100644 --- a/languages/tree-sitter-stack-graphs-typescript/README.md +++ b/languages/tree-sitter-stack-graphs-typescript/README.md @@ -13,7 +13,7 @@ To use this library, add the following to your `Cargo.toml`: ```toml [dependencies] -tree-sitter-stack-graphs-typescript = "0.1.0" +tree-sitter-stack-graphs-typescript = "0.2" ``` Check out our [documentation](https://docs.rs/tree-sitter-stack-graphs-typescript/*/) for more details on how to use this library.