From b0a80639b0d385cd9af91ad9ad1760ea48fc7ba7 Mon Sep 17 00:00:00 2001 From: pplx-oss Date: Wed, 29 Jul 2026 12:15:25 -0400 Subject: [PATCH] chore(main): release codescythe_cli 0.9.0 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 14 ++++++++++++++ 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, 30 insertions(+), 16 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 64f3cdd..76d5538 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.8.0" + ".": "0.9.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index c16e11d..9d4bea5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [0.9.0](https://github.com/perplexityai/codescythe/compare/codescythe_cli_v0.8.0...codescythe_cli_v0.9.0) (2026-07-29) + + +### Features + +* **query:** report alternate conflict entrypoints ([#106](https://github.com/perplexityai/codescythe/issues/106)) ([bf27ae9](https://github.com/perplexityai/codescythe/commit/bf27ae913ddeb9e0aadba6dc0a2ec7393f42791d)) +* **query:** suppress intentional import conflicts ([#103](https://github.com/perplexityai/codescythe/issues/103)) ([c351f4c](https://github.com/perplexityai/codescythe/commit/c351f4c27433529c0d679cccfbfe73b05a2e9dcf)) +* **query:** suppress intentional preload subtrees ([#105](https://github.com/perplexityai/codescythe/issues/105)) ([456ee1a](https://github.com/perplexityai/codescythe/commit/456ee1ae1928a20deb5dc8a356ec76ad28e595c6)) + + +### Bug Fixes + +* **query:** ignore type-only re-exports in conflicts ([#101](https://github.com/perplexityai/codescythe/issues/101)) ([7613018](https://github.com/perplexityai/codescythe/commit/7613018c39eaba1a317494d25e36048e40b2ef72)) + ## [0.8.0](https://github.com/perplexityai/codescythe/compare/codescythe_cli_v0.7.1...codescythe_cli_v0.8.0) (2026-07-28) diff --git a/Cargo.lock b/Cargo.lock index e4cbd7c..69eca60 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -205,7 +205,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "codescythe" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "globset", @@ -229,7 +229,7 @@ dependencies = [ [[package]] name = "codescythe_cli" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "clap", @@ -239,7 +239,7 @@ dependencies = [ [[package]] name = "codescythe_napi" -version = "0.8.0" +version = "0.9.0" dependencies = [ "anyhow", "codescythe", diff --git a/Cargo.toml b/Cargo.toml index afffaaa..f7740b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ resolver = "3" [workspace.package] -version = "0.8.0" +version = "0.9.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 7db4c76..e60a640 100644 --- a/crates/codescythe/BUILD.bazel +++ b/crates/codescythe/BUILD.bazel @@ -22,7 +22,7 @@ COMMON_DEPS = [ "@crates//:walkdir", ] -VERSION = "0.8.0" # x-release-please-version +VERSION = "0.9.0" # x-release-please-version LIB_SRCS = [ "analyze/discovery.rs", diff --git a/crates/codescythe/Cargo.toml b/crates/codescythe/Cargo.toml index bc88d55..c82e337 100644 --- a/crates/codescythe/Cargo.toml +++ b/crates/codescythe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe" -version = "0.8.0" +version = "0.9.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 d25b49b..9cad76d 100644 --- a/crates/codescythe_cli/BUILD.bazel +++ b/crates/codescythe_cli/BUILD.bazel @@ -7,7 +7,7 @@ load( "release_binary_linux_arm64", ) -VERSION = "0.8.0" # x-release-please-version +VERSION = "0.9.0" # x-release-please-version rust_binary( name = "codescythe", diff --git a/crates/codescythe_cli/Cargo.toml b/crates/codescythe_cli/Cargo.toml index a717e27..c91a774 100644 --- a/crates/codescythe_cli/Cargo.toml +++ b/crates/codescythe_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe_cli" -version = "0.8.0" +version = "0.9.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 5c7c68f..7dea5cb 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.8.0"; // x-release-please-version +const EXPECTED_SUMMARY_VERSION: &str = "0.9.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.8.0" // x-release-please-version + "codescythe 0.9.0" // x-release-please-version ); } diff --git a/crates/codescythe_napi/Cargo.toml b/crates/codescythe_napi/Cargo.toml index bb2b7f0..c9d958f 100644 --- a/crates/codescythe_napi/Cargo.toml +++ b/crates/codescythe_napi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe_napi" -version = "0.8.0" +version = "0.9.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 27d19d9..6c1be3b 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.8.0", + "version": "0.9.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 0fabbbe..aae21bf 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.8.0", + "version": "0.9.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 5527d27..b216498 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.8.0", + "version": "0.9.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 54a6cff..8abcfc8 100644 --- a/packages/codescythe/package.json +++ b/packages/codescythe/package.json @@ -1,6 +1,6 @@ { "name": "codescythe", - "version": "0.8.0", + "version": "0.9.0", "description": "Focused TypeScript dead-code analysis and removal", "license": "Apache-2.0", "repository": {