From fdb542118642c4e9dcc9a5f18204256337c593eb Mon Sep 17 00:00:00 2001 From: pplx-oss Date: Fri, 29 May 2026 10:13:01 -0400 Subject: [PATCH] chore(main): release codescythe_cli 0.6.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 10 ++++++++++ Cargo.lock | 6 +++--- Cargo.toml | 2 +- crates/codescythe/BUILD.bazel | 2 +- crates/codescythe/Cargo.toml | 2 +- crates/codescythe_cli/BUILD.bazel | 2 +- crates/codescythe_cli/Cargo.toml | 2 +- crates/codescythe_cli/e2e.rs | 4 ++-- crates/codescythe_napi/Cargo.toml | 2 +- packages/codescythe-darwin-arm64/package.json | 2 +- packages/codescythe-linux-amd64/package.json | 2 +- packages/codescythe-linux-arm64/package.json | 2 +- packages/codescythe/package.json | 2 +- 14 files changed, 26 insertions(+), 16 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index f1c1e58..bcd0522 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.5.0" + ".": "0.6.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 8dabb62..d0af214 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [0.6.0](https://github.com/perplexityai/codescythe/compare/codescythe_cli_v0.5.0...codescythe_cli_v0.6.0) (2026-05-29) + + +### Features + +* add dependency path query command ([#80](https://github.com/perplexityai/codescythe/issues/80)) ([70d4482](https://github.com/perplexityai/codescythe/commit/70d4482ecd2456a03cd503c3762c553f4f3e5284)) +* merge somepath query modes ([#85](https://github.com/perplexityai/codescythe/issues/85)) ([eeb0bb6](https://github.com/perplexityai/codescythe/commit/eeb0bb60ab85c1512c81a79a7ceea5704a5302a8)) +* render query output as svg ([#83](https://github.com/perplexityai/codescythe/issues/83)) ([aeb7974](https://github.com/perplexityai/codescythe/commit/aeb797422dccdfb18d62df48c861fe927f09e973)) +* render query results as mermaid ([#81](https://github.com/perplexityai/codescythe/issues/81)) ([b6667d9](https://github.com/perplexityai/codescythe/commit/b6667d92cf80ceb8eb69d2194c1330614354c668)) + ## [0.5.0](https://github.com/perplexityai/codescythe/compare/codescythe_cli_v0.4.15...codescythe_cli_v0.5.0) (2026-05-27) diff --git a/Cargo.lock b/Cargo.lock index cb97170..940aabd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -205,7 +205,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "codescythe" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "globset", @@ -229,7 +229,7 @@ dependencies = [ [[package]] name = "codescythe_cli" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "clap", @@ -239,7 +239,7 @@ dependencies = [ [[package]] name = "codescythe_napi" -version = "0.5.0" +version = "0.6.0" dependencies = [ "anyhow", "codescythe", diff --git a/Cargo.toml b/Cargo.toml index 78fa407..7dc0ce2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ resolver = "3" [workspace.package] -version = "0.5.0" +version = "0.6.0" edition = "2024" license = "Apache-2.0" repository = "https://github.com/perplexityai/codescythe" diff --git a/crates/codescythe/BUILD.bazel b/crates/codescythe/BUILD.bazel index 133700a..58f0b46 100644 --- a/crates/codescythe/BUILD.bazel +++ b/crates/codescythe/BUILD.bazel @@ -22,7 +22,7 @@ COMMON_DEPS = [ "@crates//:walkdir", ] -VERSION = "0.5.0" # x-release-please-version +VERSION = "0.6.0" # x-release-please-version LIB_SRCS = [ "analyze/discovery.rs", diff --git a/crates/codescythe/Cargo.toml b/crates/codescythe/Cargo.toml index e2d25ff..a174f84 100644 --- a/crates/codescythe/Cargo.toml +++ b/crates/codescythe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe" -version = "0.5.0" +version = "0.6.0" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/codescythe_cli/BUILD.bazel b/crates/codescythe_cli/BUILD.bazel index a6741be..c11c921 100644 --- a/crates/codescythe_cli/BUILD.bazel +++ b/crates/codescythe_cli/BUILD.bazel @@ -7,7 +7,7 @@ load( "release_binary_linux_arm64", ) -VERSION = "0.5.0" # x-release-please-version +VERSION = "0.6.0" # x-release-please-version rust_binary( name = "codescythe", diff --git a/crates/codescythe_cli/Cargo.toml b/crates/codescythe_cli/Cargo.toml index 64c69d3..547e722 100644 --- a/crates/codescythe_cli/Cargo.toml +++ b/crates/codescythe_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe_cli" -version = "0.5.0" +version = "0.6.0" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/codescythe_cli/e2e.rs b/crates/codescythe_cli/e2e.rs index 5d41cfe..1132b91 100644 --- a/crates/codescythe_cli/e2e.rs +++ b/crates/codescythe_cli/e2e.rs @@ -9,7 +9,7 @@ use std::{ use serde_json::Value; -const EXPECTED_SUMMARY_VERSION: &str = "0.5.0"; // x-release-please-version +const EXPECTED_SUMMARY_VERSION: &str = "0.6.0"; // x-release-please-version #[test] fn cli_reports_release_version() { @@ -26,7 +26,7 @@ fn cli_reports_release_version() { ); assert_eq!( String::from_utf8_lossy(&output.stdout).trim(), - "codescythe 0.5.0" // x-release-please-version + "codescythe 0.6.0" // x-release-please-version ); } diff --git a/crates/codescythe_napi/Cargo.toml b/crates/codescythe_napi/Cargo.toml index c91f3a9..9a26c7e 100644 --- a/crates/codescythe_napi/Cargo.toml +++ b/crates/codescythe_napi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe_napi" -version = "0.5.0" +version = "0.6.0" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/packages/codescythe-darwin-arm64/package.json b/packages/codescythe-darwin-arm64/package.json index 04dcb7a..75c95da 100644 --- a/packages/codescythe-darwin-arm64/package.json +++ b/packages/codescythe-darwin-arm64/package.json @@ -1,6 +1,6 @@ { "name": "codescythe-darwin-arm64", - "version": "0.5.0", + "version": "0.6.0", "description": "Codescythe native binding for Darwin arm64", "license": "Apache-2.0", "repository": { diff --git a/packages/codescythe-linux-amd64/package.json b/packages/codescythe-linux-amd64/package.json index b978614..0e2fafa 100644 --- a/packages/codescythe-linux-amd64/package.json +++ b/packages/codescythe-linux-amd64/package.json @@ -1,6 +1,6 @@ { "name": "codescythe-linux-amd64", - "version": "0.5.0", + "version": "0.6.0", "description": "Codescythe native binding for Linux amd64", "license": "Apache-2.0", "repository": { diff --git a/packages/codescythe-linux-arm64/package.json b/packages/codescythe-linux-arm64/package.json index 3d88414..7cdb59f 100644 --- a/packages/codescythe-linux-arm64/package.json +++ b/packages/codescythe-linux-arm64/package.json @@ -1,6 +1,6 @@ { "name": "codescythe-linux-arm64", - "version": "0.5.0", + "version": "0.6.0", "description": "Codescythe native binding for Linux arm64", "license": "Apache-2.0", "repository": { diff --git a/packages/codescythe/package.json b/packages/codescythe/package.json index 64c106b..8d7a69a 100644 --- a/packages/codescythe/package.json +++ b/packages/codescythe/package.json @@ -1,6 +1,6 @@ { "name": "codescythe", - "version": "0.5.0", + "version": "0.6.0", "description": "Focused TypeScript dead-code analysis and removal", "license": "Apache-2.0", "repository": {