fork of https://github.com/tree-sitter/tree-sitter-graph

Bumps version

Co-authored-by: Hendrik van Antwerpen <hendrikvanantwerpen@github.com>

+8
CHANGELOG.md
··· 5 5 The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), 6 6 and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 7 7 8 + ## v0.11.0 -- 2023-07-17 9 + 10 + ### Library 11 + 12 + #### Added 13 + 14 + - Store a debug attribute for the matched syntax node, providing information about the syntactic category of the match that gave rise to the graph node. 15 + 8 16 ## v0.10.5 -- 2023-06-26 9 17 10 18 #### Fixed
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "tree-sitter-graph" 3 - version = "0.10.5" 3 + version = "0.11.0" 4 4 description = "Construct graphs from parsed source code" 5 5 homepage = "https://github.com/tree-sitter/tree-sitter-graph/" 6 6 repository = "https://github.com/tree-sitter/tree-sitter-graph/"
+1 -1
README.md
··· 20 20 21 21 ``` toml 22 22 [dependencies] 23 - tree-sitter-graph = "0.10" 23 + tree-sitter-graph = "0.11" 24 24 ``` 25 25 26 26 To use it as a program, install it via `cargo install`: