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

Bump 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.4 -- 2023-06-02 9 + 10 + ### Library 11 + 12 + #### Added 13 + 14 + - Several errors include more context in the error message: Duplicate errors report both statements using source snippets. Edge statements report which argument (the source or the sink) triggered an evluation error. 15 + 16 + #### Fixed 17 + 18 + - Ensure that edge attribute statements are executed after edges are created, to prevent non-deterministic ordering bugs in lazy execution mode. 19 + 8 20 ## v0.10.3 -- 2023-06-01 9 21 10 22 ### DSL
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "tree-sitter-graph" 3 - version = "0.10.3" 3 + version = "0.10.4" 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/"