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

Bump patch version and update changelog

Changed files
+13 -1
+12
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.10.2 -- 2023-05-25 9 + 10 + ### Library 11 + 12 + #### Added 13 + 14 + - Edge debug information now contains the TSG location of the `edge` statement if `ExecutionConfig::location_attr` is set. 15 + 16 + #### Changed 17 + 18 + - The TSG location in the debug information is formatted more explicitly as `line XX column YY` instead of `(XX, YY)`. 19 + 8 20 ## v0.10.1 -- 2023-05-15 9 21 10 22 ### Library
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "tree-sitter-graph" 3 - version = "0.10.1" 3 + version = "0.10.2" 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/"