Skip to content

Commit

Permalink
Bump stack-graphs to v0.12.0 and tree-sitter-stack-graphs to v0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikvanantwerpen committed Jul 27, 2023
1 parent fef68c7 commit 0e55284
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion languages/tree-sitter-stack-graphs-typescript/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ clap = { version = "4", optional = true }
glob = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
stack-graphs = { version = "0.11", path = "../../stack-graphs" }
stack-graphs = { version = ">=0.11, <=0.12", path = "../../stack-graphs" }
tree-sitter-stack-graphs = { version = "0.7", path = "../../tree-sitter-stack-graphs" }
tree-sitter-typescript = "0.20.2"
tsconfig = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion stack-graphs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## Unreleased
## v0.12.0 -- 2023-07-27

### Added

Expand Down
2 changes: 1 addition & 1 deletion stack-graphs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "stack-graphs"
version = "0.11.0"
version = "0.12.0"
description = "Name binding for arbitrary programming languages"
homepage = "https://github.com/github/stack-graphs/tree/main/stack-graphs"
repository = "https://github.com/github/stack-graphs/"
Expand Down
2 changes: 1 addition & 1 deletion stack-graphs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ To use this library, add the following to your `Cargo.toml`:

``` toml
[dependencies]
stack-graphs = "0.11"
stack-graphs = "0.12"
```

Check out our [documentation](https://docs.rs/stack-graphs/) for more details on
Expand Down
4 changes: 4 additions & 0 deletions tree-sitter-stack-graphs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## v0.7.1 -- 2023-07-27

Support `stack-graphs` version `0.12`.

## v0.7.0 -- 2023-06-08

### Library
Expand Down
4 changes: 2 additions & 2 deletions tree-sitter-stack-graphs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tree-sitter-stack-graphs"
version = "0.7.0"
version = "0.7.1"
description = "Create stack graphs using tree-sitter parsers"
homepage = "https://github.com/github/stack-graphs/tree/main/tree-sitter-stack-graphs"
repository = "https://github.com/github/stack-graphs/"
Expand Down Expand Up @@ -69,7 +69,7 @@ regex = "1"
rust-ini = "0.18"
serde_json = { version="1.0", optional=true }
sha1 = { version="0.10", optional=true }
stack-graphs = { version="0.11", path="../stack-graphs" }
stack-graphs = { version=">=0.11, <=0.12", path="../stack-graphs" }
thiserror = "1.0"
time = { version = "0.3", optional = true }
tokio = { version = "1.26", optional = true, features = ["io-std", "rt", "rt-multi-thread"] }
Expand Down

0 comments on commit 0e55284

Please sign in to comment.