From 243ba47bac7e1ab8793f86abcbb55c8720996a47 Mon Sep 17 00:00:00 2001 From: pplx-oss Date: Mon, 1 Jun 2026 10:34:16 -0400 Subject: [PATCH] chore(main): release codescythe_cli 0.7.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 9 +++++++++ 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, 25 insertions(+), 16 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 5d02000..e7ca613 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.6.1" + ".": "0.7.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b3b5317..f134c17 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [0.7.0](https://github.com/perplexityai/codescythe/compare/codescythe_cli_v0.6.1...codescythe_cli_v0.7.0) (2026-06-01) + + +### Features + +* **cli:** add query diagnostics ([#92](https://github.com/perplexityai/codescythe/issues/92)) ([718688f](https://github.com/perplexityai/codescythe/commit/718688ffebb2027bd437db050cf305a2ed410015)) +* **cli:** add query unresolved filter ([#90](https://github.com/perplexityai/codescythe/issues/90)) ([9a7aa33](https://github.com/perplexityai/codescythe/commit/9a7aa3320fdcfb924943779ede8408e2017461e9)) +* **cli:** scope query unresolved diagnostics ([#93](https://github.com/perplexityai/codescythe/issues/93)) ([4b79c85](https://github.com/perplexityai/codescythe/commit/4b79c85478a6a1c71da6aeeaf06e99599a6eb3ea)) + ## [0.6.1](https://github.com/perplexityai/codescythe/compare/codescythe_cli_v0.6.0...codescythe_cli_v0.6.1) (2026-05-30) diff --git a/Cargo.lock b/Cargo.lock index 90d6e88..bb34e82 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -205,7 +205,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "codescythe" -version = "0.6.1" +version = "0.7.0" dependencies = [ "anyhow", "globset", @@ -229,7 +229,7 @@ dependencies = [ [[package]] name = "codescythe_cli" -version = "0.6.1" +version = "0.7.0" dependencies = [ "anyhow", "clap", @@ -239,7 +239,7 @@ dependencies = [ [[package]] name = "codescythe_napi" -version = "0.6.1" +version = "0.7.0" dependencies = [ "anyhow", "codescythe", diff --git a/Cargo.toml b/Cargo.toml index e34129e..eccdbb8 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ resolver = "3" [workspace.package] -version = "0.6.1" +version = "0.7.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 d84afaf..bc00d0c 100644 --- a/crates/codescythe/BUILD.bazel +++ b/crates/codescythe/BUILD.bazel @@ -22,7 +22,7 @@ COMMON_DEPS = [ "@crates//:walkdir", ] -VERSION = "0.6.1" # x-release-please-version +VERSION = "0.7.0" # x-release-please-version LIB_SRCS = [ "analyze/discovery.rs", diff --git a/crates/codescythe/Cargo.toml b/crates/codescythe/Cargo.toml index b609966..e21e494 100644 --- a/crates/codescythe/Cargo.toml +++ b/crates/codescythe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe" -version = "0.6.1" +version = "0.7.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 40c382f..5bfd41b 100644 --- a/crates/codescythe_cli/BUILD.bazel +++ b/crates/codescythe_cli/BUILD.bazel @@ -7,7 +7,7 @@ load( "release_binary_linux_arm64", ) -VERSION = "0.6.1" # x-release-please-version +VERSION = "0.7.0" # x-release-please-version rust_binary( name = "codescythe", diff --git a/crates/codescythe_cli/Cargo.toml b/crates/codescythe_cli/Cargo.toml index 48d3e9a..376506b 100644 --- a/crates/codescythe_cli/Cargo.toml +++ b/crates/codescythe_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe_cli" -version = "0.6.1" +version = "0.7.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 1e87884..e5a920f 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.6.1"; // x-release-please-version +const EXPECTED_SUMMARY_VERSION: &str = "0.7.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.6.1" // x-release-please-version + "codescythe 0.7.0" // x-release-please-version ); } diff --git a/crates/codescythe_napi/Cargo.toml b/crates/codescythe_napi/Cargo.toml index f26d975..97b8741 100644 --- a/crates/codescythe_napi/Cargo.toml +++ b/crates/codescythe_napi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe_napi" -version = "0.6.1" +version = "0.7.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 758ca03..1c5df43 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.6.1", + "version": "0.7.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 13b5e7a..521fd4a 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.6.1", + "version": "0.7.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 e1ae687..eb4d141 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.6.1", + "version": "0.7.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 5aefefe..8a7e50f 100644 --- a/packages/codescythe/package.json +++ b/packages/codescythe/package.json @@ -1,6 +1,6 @@ { "name": "codescythe", - "version": "0.6.1", + "version": "0.7.0", "description": "Focused TypeScript dead-code analysis and removal", "license": "Apache-2.0", "repository": {