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

Commit f715ed1

Browse files
author
Hendrik van Antwerpen
committed
Release stack-graphs v0.14.0
1 parent 20a2554 commit f715ed1

File tree

6 files changed

+11
-5
lines changed

6 files changed

+11
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ anyhow = { version = "1.0", optional = true }
3030
clap = { version = "4", optional = true }
3131
serde = { version = "1.0", features = ["derive"] }
3232
serde_json = "1.0"
33-
stack-graphs = { version = "0.13", path = "../../stack-graphs" }
33+
stack-graphs = { path = "../../stack-graphs" }
3434
tree-sitter-graph = "0.11.2"
3535
tree-sitter-javascript = "=0.20.4"
3636
tree-sitter-stack-graphs = { version = "0.8", path = "../../tree-sitter-stack-graphs" }

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ clap = { version = "4", optional = true }
3232
glob = "0.3"
3333
serde = { version = "1.0", features = ["derive"] }
3434
serde_json = "1.0"
35-
stack-graphs = { version = "0.13", path = "../../stack-graphs" }
35+
stack-graphs = { path = "../../stack-graphs" }
3636
tree-sitter-stack-graphs = { version = "0.8", path = "../../tree-sitter-stack-graphs" }
3737
tree-sitter-typescript = "=0.20.2"
3838
tsconfig = "0.1.0"

stack-graphs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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+
## v0.14.0 -- 2024-07-09
9+
10+
### Changed
11+
12+
- The method `StackGraph::add_from_graph` returns the handles of the newly added files.
13+
814
## v0.13.0 -- 2024-03-06
915

1016
### Added

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 = "stack-graphs"
3-
version = "0.13.0"
3+
version = "0.14.0"
44
description = "Name binding for arbitrary programming languages"
55
homepage = "https://github.com/github/stack-graphs/tree/main/stack-graphs"
66
repository = "https://github.com/github/stack-graphs/"

stack-graphs/README.md

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

1010
``` toml
1111
[dependencies]
12-
stack-graphs = "0.13"
12+
stack-graphs = "0.14"
1313
```
1414

1515
Check out our [documentation](https://docs.rs/stack-graphs/) for more details on

tree-sitter-stack-graphs/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ regex = "1"
6969
rust-ini = "0.18"
7070
serde_json = { version="1.0", optional=true }
7171
sha1 = { version="0.10", optional=true }
72-
stack-graphs = { version="0.13", path="../stack-graphs" }
72+
stack-graphs = { path="../stack-graphs" }
7373
thiserror = "1.0"
7474
time = { version = "0.3", optional = true }
7575
tokio = { version = "1.26", optional = true, features = ["io-std", "rt", "rt-multi-thread"] }

0 commit comments

Comments
 (0)