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

Merge pull request #123 from tree-sitter/new-release

Release 0.8.0

authored by Hendrik van Antwerpen and committed by GitHub 3b051cb3 431bde93

+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 + ## 0.8.0 -- 2023-03-29 9 + 10 + ### Library 11 + 12 + #### Fixed 13 + 14 + - Fix error formatting panic with strict execution. 15 + 16 + #### Changed 17 + 18 + - The traits stored in `Functions` must now implement `Send` and `Sync` to ensure they can be shared more easily in concurrent situations. 19 + 8 20 ## 0.7.0 -- 2022-10-18 9 21 10 22 ### DSL
+1 -1
Cargo.toml
··· 1 1 [package] 2 2 name = "tree-sitter-graph" 3 - version = "0.7.0" 3 + version = "0.8.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.7" 23 + tree-sitter-graph = "0.8" 24 24 ``` 25 25 26 26 To use it as a program, install it via `cargo install`: