From 0e55284b66c842885cc0c7440fcab91c03a19837 Mon Sep 17 00:00:00 2001 From: Hendrik van Antwerpen Date: Thu, 27 Jul 2023 18:16:38 +0200 Subject: [PATCH] Bump stack-graphs to v0.12.0 and tree-sitter-stack-graphs to v0.7.1 --- languages/tree-sitter-stack-graphs-typescript/Cargo.toml | 2 +- stack-graphs/CHANGELOG.md | 2 +- stack-graphs/Cargo.toml | 2 +- stack-graphs/README.md | 2 +- tree-sitter-stack-graphs/CHANGELOG.md | 4 ++++ tree-sitter-stack-graphs/Cargo.toml | 4 ++-- 6 files changed, 10 insertions(+), 6 deletions(-) diff --git a/languages/tree-sitter-stack-graphs-typescript/Cargo.toml b/languages/tree-sitter-stack-graphs-typescript/Cargo.toml index 9d526a1b0..65511e3f8 100644 --- a/languages/tree-sitter-stack-graphs-typescript/Cargo.toml +++ b/languages/tree-sitter-stack-graphs-typescript/Cargo.toml @@ -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" diff --git a/stack-graphs/CHANGELOG.md b/stack-graphs/CHANGELOG.md index d9816a707..ee5b6404f 100644 --- a/stack-graphs/CHANGELOG.md +++ b/stack-graphs/CHANGELOG.md @@ -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 diff --git a/stack-graphs/Cargo.toml b/stack-graphs/Cargo.toml index b20fe3ee9..9e6870ed7 100644 --- a/stack-graphs/Cargo.toml +++ b/stack-graphs/Cargo.toml @@ -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/" diff --git a/stack-graphs/README.md b/stack-graphs/README.md index 4afcfc7b8..7805d19ef 100644 --- a/stack-graphs/README.md +++ b/stack-graphs/README.md @@ -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 diff --git a/tree-sitter-stack-graphs/CHANGELOG.md b/tree-sitter-stack-graphs/CHANGELOG.md index d681b17fb..d4e1d197f 100644 --- a/tree-sitter-stack-graphs/CHANGELOG.md +++ b/tree-sitter-stack-graphs/CHANGELOG.md @@ -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 diff --git a/tree-sitter-stack-graphs/Cargo.toml b/tree-sitter-stack-graphs/Cargo.toml index d2dded3aa..759dcc928 100644 --- a/tree-sitter-stack-graphs/Cargo.toml +++ b/tree-sitter-stack-graphs/Cargo.toml @@ -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/" @@ -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"] }