Skip to content

Commit 0b81f63

Browse files
Merge pull request #163 from github/releases
Release tree-sitter-stack-graphs v0.6.0
2 parents 51b8376 + e776eb9 commit 0b81f63

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ clap = "3"
2727
glob = "0.3"
2828
serde = { version = "1.0", features = ["derive"] }
2929
serde_json = "1.0"
30-
stack-graphs = { version = "~0.10", path = "../../stack-graphs" }
31-
tree-sitter-stack-graphs = { version = "~0.5", path = "../../tree-sitter-stack-graphs", features=["cli"] }
30+
stack-graphs = { version = "0.10", path = "../../stack-graphs" }
31+
tree-sitter-stack-graphs = { version = "0.6", path = "../../tree-sitter-stack-graphs", features=["cli"] }
3232
tree-sitter-typescript = { git = "https://github.com/tree-sitter/tree-sitter-typescript", rev="082da44a5263599186dadafd2c974c19f3a73d28" }
3333
tsconfig = "0.1.0"

tree-sitter-stack-graphs/CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ 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.6.0 -- 2023-01-13
99

1010
### Library
1111

@@ -14,6 +14,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
- The `cli` module has been reorganized. Instead of providing a fully derived CLI type, the subcommands are now exposed, while deriving the CLI type is left to the user. This makes sure that the name and version reported by the version command are ones from the user crate, and not from this crate. Instead of using `cli::LanguageConfigurationsCli` and `cli::PathLoadingCli`, users should using from `cli::provided_languages::Subcommands` and `cli::path_loading::Subcommands` respectively. The `cli` module documentation shows complete examples of how to do this.
1515
- The `cli::CiTester` type has been moved to `ci::Tester`. Because it uses `cli` code internally, it is still hidden behind the `cli` feature flag.
1616

17+
#### Fixed
18+
19+
- Fix issue with test directives in languages that do not support comments.
20+
1721
## v0.5.1 -- 2023-01-10
1822

1923
Patch release to update *all* version numbers.

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.5.1"
3+
version = "0.6.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
@@ -15,7 +15,7 @@ To use this library, add the following to your `Cargo.toml`:
1515

1616
``` toml
1717
[dependencies]
18-
tree-sitter-stack-graphs = "0.5"
18+
tree-sitter-stack-graphs = "0.6"
1919
```
2020

2121
Check out our [documentation](https://docs.rs/tree-sitter-stack-graphs/*/) for

tree-sitter-stack-graphs/npm/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "tree-sitter-stack-graphs",
3-
"version": "0.5.1",
3+
"version": "0.6.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": {

0 commit comments

Comments
 (0)