Skip to content
This repository was archived by the owner on Sep 9, 2025. It is now read-only.

Commit a7f9d9c

Browse files
author
Hendrik van Antwerpen
committed
Bump tree-sitter-stack-graphs to v0.8.0
1 parent 9a7a566 commit a7f9d9c

File tree

7 files changed

+13
-11
lines changed

7 files changed

+13
-11
lines changed

languages/tree-sitter-stack-graphs-java/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ cli = ["anyhow", "clap", "tree-sitter-stack-graphs/cli"]
4141
anyhow = { version = "1.0", optional = true }
4242
clap = { version = "4", features = ["derive"], optional = true }
4343
tree-sitter-java = { version = "=0.20.0" }
44-
tree-sitter-stack-graphs = { version = "0.7", path = "../../tree-sitter-stack-graphs" }
44+
tree-sitter-stack-graphs = { version = "0.8", path = "../../tree-sitter-stack-graphs" }
4545

4646
[dev-dependencies]
4747
anyhow = { version = "1.0" }
48-
tree-sitter-stack-graphs = { version = "0.7", path = "../../tree-sitter-stack-graphs", features = ["cli"] }
48+
tree-sitter-stack-graphs = { version = "0.8", path = "../../tree-sitter-stack-graphs", features = ["cli"] }

languages/tree-sitter-stack-graphs-javascript/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ clap = { version = "4", optional = true }
3131
serde = { version = "1.0", features = ["derive"] }
3232
serde_json = "1.0"
3333
stack-graphs = { version = "0.12", path = "../../stack-graphs" }
34-
tree-sitter-stack-graphs = { version = "0.7", path = "../../tree-sitter-stack-graphs" }
34+
tree-sitter-stack-graphs = { version = "0.8", path = "../../tree-sitter-stack-graphs" }
3535
tree-sitter-javascript = { git = "https://github.com/tree-sitter/tree-sitter-javascript", rev = "5720b249490b3c17245ba772f6be4a43edb4e3b7" }
3636

3737
[dev-dependencies]
3838
anyhow = "1.0"
39-
tree-sitter-stack-graphs = { version = "0.7", path = "../../tree-sitter-stack-graphs", features = ["cli"] }
39+
tree-sitter-stack-graphs = { version = "0.8", path = "../../tree-sitter-stack-graphs", features = ["cli"] }

languages/tree-sitter-stack-graphs-python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ cli = ["anyhow", "clap", "tree-sitter-stack-graphs/cli"]
3030
[dependencies]
3131
anyhow = { version = "1.0", optional = true }
3232
clap = { version = "4", optional = true, features = ["derive"] }
33-
tree-sitter-stack-graphs = { version = "0.7", path = "../../tree-sitter-stack-graphs" }
33+
tree-sitter-stack-graphs = { version = "0.8", path = "../../tree-sitter-stack-graphs" }
3434
tree-sitter-python = "=0.20.4"
3535

3636
[dev-dependencies]
3737
anyhow = "1.0"
38-
tree-sitter-stack-graphs = { version = "0.7", path = "../../tree-sitter-stack-graphs", features = ["cli"] }
38+
tree-sitter-stack-graphs = { version = "0.8", path = "../../tree-sitter-stack-graphs", features = ["cli"] }

languages/tree-sitter-stack-graphs-typescript/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ glob = "0.3"
3333
serde = { version = "1.0", features = ["derive"] }
3434
serde_json = "1.0"
3535
stack-graphs = { version = ">=0.11, <=0.12", path = "../../stack-graphs" }
36-
tree-sitter-stack-graphs = { version = "0.7", path = "../../tree-sitter-stack-graphs" }
36+
tree-sitter-stack-graphs = { version = "0.8", path = "../../tree-sitter-stack-graphs" }
3737
tree-sitter-typescript = "=0.20.2"
3838
tsconfig = "0.1.0"
3939

4040
[dev-dependencies]
4141
anyhow = { version = "1.0" }
42-
tree-sitter-stack-graphs = { version = "0.7", path = "../../tree-sitter-stack-graphs", features = ["cli"] }
42+
tree-sitter-stack-graphs = { version = "0.8", path = "../../tree-sitter-stack-graphs", features = ["cli"] }

tree-sitter-stack-graphs/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## Unreleased
8+
## v0.8.0 -- 2024-03-05
9+
10+
The `tree-sitter` dependency version was updated to fix install problems.
911

1012
### Library
1113

tree-sitter-stack-graphs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tree-sitter-stack-graphs"
3-
version = "0.7.1"
3+
version = "0.8.0"
44
description = "Create stack graphs using tree-sitter parsers"
55
homepage = "https://github.com/github/stack-graphs/tree/main/tree-sitter-stack-graphs"
66
repository = "https://github.com/github/stack-graphs/"

tree-sitter-stack-graphs/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ To use this library, add the following to your `Cargo.toml`:
1414

1515
```toml
1616
[dependencies]
17-
tree-sitter-stack-graphs = "0.7"
17+
tree-sitter-stack-graphs = "0.8"
1818
```
1919

2020
Check out our [documentation](https://docs.rs/tree-sitter-stack-graphs/*/) for more details on how to use this library.

0 commit comments

Comments
 (0)