diff --git a/.changeset/cursor-marketplace-manifest.md b/.changeset/cursor-marketplace-manifest.md deleted file mode 100644 index 432a910..0000000 --- a/.changeset/cursor-marketplace-manifest.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"subtext": patch ---- - -Add a Cursor-flavored marketplace manifest (`.cursor-plugin/marketplace.json`) listing only the root Subtext plugin. Cursor-style marketplace indexers read `.cursor-plugin/marketplace.json` before `.claude-plugin/marketplace.json`; without it they fall through to the Claude listing, where the external `subtext-verify` GitHub source reference either fails parsing or causes Subtext Verify to be surfaced instead of Subtext. Also teach `sync-manifest-versions.mjs` to keep the new manifest's version in sync. diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json index f8ce10c..5329675 100644 --- a/.claude-plugin/marketplace.json +++ b/.claude-plugin/marketplace.json @@ -8,7 +8,7 @@ { "name": "subtext", "source": "./", - "version": "0.10.2", + "version": "0.10.3", "description": "Review Subtext session recordings and manage privacy rules", "category": "development", "keywords": [ diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json index aac3d79..2eced0b 100644 --- a/.claude-plugin/plugin.json +++ b/.claude-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "subtext", - "version": "0.10.2", + "version": "0.10.3", "description": "Review Subtext session recordings and manage privacy rules", "license": "MIT", "author": { diff --git a/.codex-plugin/plugin.json b/.codex-plugin/plugin.json index e7313fd..96bf2e3 100644 --- a/.codex-plugin/plugin.json +++ b/.codex-plugin/plugin.json @@ -1,6 +1,6 @@ { "name": "subtext", - "version": "0.10.2", + "version": "0.10.3", "description": "Review Subtext session recordings and manage privacy rules", "author": { "name": "Subtext", diff --git a/.cursor-plugin/marketplace.json b/.cursor-plugin/marketplace.json index 1188e5f..90af5d5 100644 --- a/.cursor-plugin/marketplace.json +++ b/.cursor-plugin/marketplace.json @@ -8,7 +8,7 @@ { "name": "subtext", "source": "./", - "version": "0.10.2", + "version": "0.10.3", "description": "Review Subtext session recordings and manage privacy rules", "category": "development", "keywords": [ diff --git a/.cursor-plugin/plugin.json b/.cursor-plugin/plugin.json index a08cfac..893f155 100644 --- a/.cursor-plugin/plugin.json +++ b/.cursor-plugin/plugin.json @@ -2,7 +2,7 @@ "name": "subtext", "displayName": "Subtext", "description": "Review Subtext session recordings and manage privacy rules", - "version": "0.10.2", + "version": "0.10.3", "license": "MIT", "author": { "name": "Subtext", diff --git a/CHANGELOG.md b/CHANGELOG.md index ce9f94b..21d1979 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # subtext +## 0.10.3 + +### Patch Changes + +- b2ee015: Add a Cursor-flavored marketplace manifest (`.cursor-plugin/marketplace.json`) listing only the root Subtext plugin. Cursor-style marketplace indexers read `.cursor-plugin/marketplace.json` before `.claude-plugin/marketplace.json`; without it they fall through to the Claude listing, where the external `subtext-verify` GitHub source reference either fails parsing or causes Subtext Verify to be surfaced instead of Subtext. Also teach `sync-manifest-versions.mjs` to keep the new manifest's version in sync. + ## 0.10.2 ### Patch Changes diff --git a/gemini-extension.json b/gemini-extension.json index e06a8cc..21a1af8 100644 --- a/gemini-extension.json +++ b/gemini-extension.json @@ -1,6 +1,6 @@ { "name": "subtext", - "version": "0.10.2", + "version": "0.10.3", "description": "Review Subtext session recordings and manage privacy rules", "mcpServers": { "subtext": { diff --git a/package.json b/package.json index 1a6f55a..5e088af 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "subtext", - "version": "0.10.2", + "version": "0.10.3", "type": "module", "scripts": { "changeset": "npx --yes @changesets/cli@^2.27.0",