From f7ceceb3d879070ecbcfc5aabb4684050c894b99 Mon Sep 17 00:00:00 2001 From: pplx-oss Date: Fri, 31 Jul 2026 09:24:58 -0400 Subject: [PATCH] chore(main): release codescythe_cli 0.10.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 7 +++++++ 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, 23 insertions(+), 16 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 7d9b009..30b6d45 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.10.0" + ".": "0.10.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index abe5be0..0ea8804 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.10.1](https://github.com/perplexityai/codescythe/compare/codescythe_cli_v0.10.0...codescythe_cli_v0.10.1) (2026-07-31) + + +### Bug Fixes + +* reject unmatched entry globs ([#110](https://github.com/perplexityai/codescythe/issues/110)) ([c602395](https://github.com/perplexityai/codescythe/commit/c6023951767eeac83c569dcc75122518e60f9b9c)) + ## [0.10.0](https://github.com/perplexityai/codescythe/compare/codescythe_cli_v0.9.0...codescythe_cli_v0.10.0) (2026-07-30) diff --git a/Cargo.lock b/Cargo.lock index 0a63d5d..e8c393c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -205,7 +205,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "codescythe" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "globset", @@ -229,7 +229,7 @@ dependencies = [ [[package]] name = "codescythe_cli" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "clap", @@ -239,7 +239,7 @@ dependencies = [ [[package]] name = "codescythe_napi" -version = "0.10.0" +version = "0.10.1" dependencies = [ "anyhow", "codescythe", diff --git a/Cargo.toml b/Cargo.toml index 9167d73..c212223 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ members = [ resolver = "3" [workspace.package] -version = "0.10.0" +version = "0.10.1" 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 ae92932..2fb57e4 100644 --- a/crates/codescythe/BUILD.bazel +++ b/crates/codescythe/BUILD.bazel @@ -22,7 +22,7 @@ COMMON_DEPS = [ "@crates//:walkdir", ] -VERSION = "0.10.0" # x-release-please-version +VERSION = "0.10.1" # x-release-please-version LIB_SRCS = [ "analyze/discovery.rs", diff --git a/crates/codescythe/Cargo.toml b/crates/codescythe/Cargo.toml index 376c02d..30ff6d0 100644 --- a/crates/codescythe/Cargo.toml +++ b/crates/codescythe/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe" -version = "0.10.0" +version = "0.10.1" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/codescythe_cli/BUILD.bazel b/crates/codescythe_cli/BUILD.bazel index 3cf171a..642fef4 100644 --- a/crates/codescythe_cli/BUILD.bazel +++ b/crates/codescythe_cli/BUILD.bazel @@ -7,7 +7,7 @@ load( "release_binary_linux_arm64", ) -VERSION = "0.10.0" # x-release-please-version +VERSION = "0.10.1" # x-release-please-version rust_binary( name = "codescythe", diff --git a/crates/codescythe_cli/Cargo.toml b/crates/codescythe_cli/Cargo.toml index 3f4ff06..4afd7f3 100644 --- a/crates/codescythe_cli/Cargo.toml +++ b/crates/codescythe_cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe_cli" -version = "0.10.0" +version = "0.10.1" edition.workspace = true license.workspace = true repository.workspace = true diff --git a/crates/codescythe_cli/e2e.rs b/crates/codescythe_cli/e2e.rs index ea69e47..f3bc2df 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.10.0"; // x-release-please-version +const EXPECTED_SUMMARY_VERSION: &str = "0.10.1"; // 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.10.0" // x-release-please-version + "codescythe 0.10.1" // x-release-please-version ); } diff --git a/crates/codescythe_napi/Cargo.toml b/crates/codescythe_napi/Cargo.toml index 40f593d..d9eab27 100644 --- a/crates/codescythe_napi/Cargo.toml +++ b/crates/codescythe_napi/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "codescythe_napi" -version = "0.10.0" +version = "0.10.1" 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 e0a5573..8f578c8 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.10.0", + "version": "0.10.1", "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 5e9005c..2d48258 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.10.0", + "version": "0.10.1", "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 422d3c9..d06f61f 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.10.0", + "version": "0.10.1", "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 0a6aa37..e4cffae 100644 --- a/packages/codescythe/package.json +++ b/packages/codescythe/package.json @@ -1,6 +1,6 @@ { "name": "codescythe", - "version": "0.10.0", + "version": "0.10.1", "description": "Focused TypeScript dead-code analysis and removal", "license": "Apache-2.0", "repository": {