diff --git a/.release-please-manifest.json b/.release-please-manifest.json index a46f218..b5f714f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.1.8" + ".": "0.1.9" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 40a668d..a3a3d19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [0.1.9](https://github.com/pleaseai/code-search/compare/v0.1.8...v0.1.9) (2026-07-01) + + +### Performance Improvements + +* **npm:** copy-over-shim for near-native CLI startup ([#69](https://github.com/pleaseai/code-search/issues/69)) ([03d7e29](https://github.com/pleaseai/code-search/commit/03d7e29398f785ab8f295e9029521eadda825998)) + + +### Documentation + +* rename plugin marketplace to pleaseai/claude-code-plugins ([#67](https://github.com/pleaseai/code-search/issues/67)) ([2bf9c70](https://github.com/pleaseai/code-search/commit/2bf9c703e66cece7f29488f5db8d7abb97b5be72)) + ## [0.1.8](https://github.com/pleaseai/code-search/compare/v0.1.7...v0.1.8) (2026-07-01) diff --git a/Cargo.lock b/Cargo.lock index 4cf7207..f28787b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -334,7 +334,7 @@ checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" [[package]] name = "code-search-please" -version = "0.1.8" +version = "0.1.9" dependencies = [ "codspeed-criterion-compat", "fancy-regex", @@ -602,7 +602,7 @@ dependencies = [ [[package]] name = "csp-cli" -version = "0.1.8" +version = "0.1.9" dependencies = [ "anyhow", "clap", @@ -617,7 +617,7 @@ dependencies = [ [[package]] name = "csp-node" -version = "0.1.8" +version = "0.1.9" dependencies = [ "code-search-please", "napi", diff --git a/Cargo.toml b/Cargo.toml index a259ee7..be3e581 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ resolver = "2" members = ["crates/csp", "crates/csp-cli", "crates/csp-node"] [workspace.package] -version = "0.1.8" # x-release-please-version +version = "0.1.9" # x-release-please-version edition = "2021" license = "MIT" repository = "https://github.com/pleaseai/code-search" diff --git a/crates/csp-node/package.json b/crates/csp-node/package.json index bccf890..6aeaaf5 100644 --- a/crates/csp-node/package.json +++ b/crates/csp-node/package.json @@ -1,6 +1,6 @@ { "name": "@pleaseai/csp-sdk", - "version": "0.1.8", + "version": "0.1.9", "description": "In-process native (napi-rs) SDK for csp — fast, accurate hybrid code search for agents. Binds the Rust core directly (no subprocess). The CLI/MCP server ships separately as @pleaseai/csp.", "license": "MIT", "homepage": "https://github.com/pleaseai/code-search", diff --git a/npm/csp/package.json b/npm/csp/package.json index d2c0f1c..eb9455d 100644 --- a/npm/csp/package.json +++ b/npm/csp/package.json @@ -1,6 +1,6 @@ { "name": "@pleaseai/csp", - "version": "0.1.8", + "version": "0.1.9", "description": "Fast and accurate hybrid code search for agents (Rust binary, npm-distributed).", "license": "MIT", "homepage": "https://github.com/pleaseai/code-search", diff --git a/package.json b/package.json index bd1ad4e..8cfdaa1 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@pleaseai/csp", "type": "module", - "version": "0.1.8", + "version": "0.1.9", "private": true, "packageManager": "bun@1.3.14", "description": "Fast and accurate hybrid code search for agents — Rust port of MinishLab/semble. This manifest holds repo JS tooling and the release-please version anchor; the published artifacts are the Rust binary (Homebrew) and its npm wrapper under npm/.",