diff --git a/.changeset/bunx-migration.md b/.changeset/bunx-migration.md deleted file mode 100644 index c879a1b..0000000 --- a/.changeset/bunx-migration.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"@ecuabyte/cortex-mcp-server": patch -"@ecuabyte/cortex-cli": patch ---- - -chore: migrate from npx to bunx for Bun runtime compatibility - -- Changed MCP server build target from `node` to `bun` -- Added `#!/usr/bin/env bun` shebang to bundled output -- Updated all configuration generators to output `bunx` commands -- Updated installer.ts to generate bunx configs for all editors -- Updated documentation (README, UNIVERSAL_SETUP.md) with bunx instructions - -Users now need Bun installed to run: `bunx @ecuabyte/cortex-mcp-server` diff --git a/packages/cli/CHANGELOG.md b/packages/cli/CHANGELOG.md index 90e8ac7..72acad5 100644 --- a/packages/cli/CHANGELOG.md +++ b/packages/cli/CHANGELOG.md @@ -1,5 +1,22 @@ # @ecuabyte/cortex-cli +## 0.8.1 + +### Patch Changes + +- [`74a0e4c`](https://github.com/EcuaByte-lat/Cortex/commit/74a0e4ca670b8e96081f171c378f1d7bc49f2709) Thanks [@AngelAlexQC](https://github.com/AngelAlexQC)! - chore: migrate from npx to bunx for Bun runtime compatibility + + - Changed MCP server build target from `node` to `bun` + - Added `#!/usr/bin/env bun` shebang to bundled output + - Updated all configuration generators to output `bunx` commands + - Updated installer.ts to generate bunx configs for all editors + - Updated documentation (README, UNIVERSAL_SETUP.md) with bunx instructions + + Users now need Bun installed to run: `bunx @ecuabyte/cortex-mcp-server` + +- Updated dependencies []: + - @ecuabyte/cortex-core@0.8.1 + ## 0.8.0 ### Patch Changes diff --git a/packages/cli/package.json b/packages/cli/package.json index 5779a63..516c914 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@ecuabyte/cortex-cli", - "version": "0.8.0", + "version": "0.8.1", "description": "Command-line interface for Cortex memory management", "type": "module", "bin": { diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 714f072..a899729 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,7 @@ # @ecuabyte/cortex-core +## 0.8.1 + ## 0.8.0 ## 0.6.2 diff --git a/packages/core/package.json b/packages/core/package.json index daad5c8..4ed8a0e 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@ecuabyte/cortex-core", - "version": "0.8.0", + "version": "0.8.1", "description": "Core memory storage and types for Cortex", "type": "module", "main": "./dist/index.js", diff --git a/packages/mcp-server/CHANGELOG.md b/packages/mcp-server/CHANGELOG.md index f62de5d..98ffb9f 100644 --- a/packages/mcp-server/CHANGELOG.md +++ b/packages/mcp-server/CHANGELOG.md @@ -1,5 +1,22 @@ # @ecuabyte/cortex-mcp-server +## 0.8.1 + +### Patch Changes + +- [`74a0e4c`](https://github.com/EcuaByte-lat/Cortex/commit/74a0e4ca670b8e96081f171c378f1d7bc49f2709) Thanks [@AngelAlexQC](https://github.com/AngelAlexQC)! - chore: migrate from npx to bunx for Bun runtime compatibility + + - Changed MCP server build target from `node` to `bun` + - Added `#!/usr/bin/env bun` shebang to bundled output + - Updated all configuration generators to output `bunx` commands + - Updated installer.ts to generate bunx configs for all editors + - Updated documentation (README, UNIVERSAL_SETUP.md) with bunx instructions + + Users now need Bun installed to run: `bunx @ecuabyte/cortex-mcp-server` + +- Updated dependencies []: + - @ecuabyte/cortex-core@0.8.1 + ## 0.8.0 ### Patch Changes diff --git a/packages/mcp-server/package.json b/packages/mcp-server/package.json index 0db90b7..175221a 100644 --- a/packages/mcp-server/package.json +++ b/packages/mcp-server/package.json @@ -1,6 +1,6 @@ { "name": "@ecuabyte/cortex-mcp-server", - "version": "0.8.0", + "version": "0.8.1", "description": "MCP server exposing Cortex memories to AI tools", "type": "module", "bin": { diff --git a/packages/shared/CHANGELOG.md b/packages/shared/CHANGELOG.md index 2a87f06..fc18a71 100644 --- a/packages/shared/CHANGELOG.md +++ b/packages/shared/CHANGELOG.md @@ -1,5 +1,7 @@ # @ecuabyte/cortex-shared +## 0.8.1 + ## 0.8.0 ## 0.6.2 diff --git a/packages/shared/package.json b/packages/shared/package.json index 0fe68ee..e1ae995 100644 --- a/packages/shared/package.json +++ b/packages/shared/package.json @@ -1,6 +1,6 @@ { "name": "@ecuabyte/cortex-shared", - "version": "0.8.0", + "version": "0.8.1", "type": "module", "main": "./src/index.ts", "types": "./src/index.ts", diff --git a/packages/vscode-extension/CHANGELOG.md b/packages/vscode-extension/CHANGELOG.md index 059d6f7..eb948cc 100644 --- a/packages/vscode-extension/CHANGELOG.md +++ b/packages/vscode-extension/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +## 0.8.1 + ## 0.8.0 ### Minor Changes diff --git a/packages/vscode-extension/package.json b/packages/vscode-extension/package.json index 908d707..3a80ee4 100644 --- a/packages/vscode-extension/package.json +++ b/packages/vscode-extension/package.json @@ -1,6 +1,6 @@ { "name": "cortex-vscode", - "version": "0.8.0", + "version": "0.8.1", "displayName": "Cortex: AI Memory", "description": "Persistent Memory for AI Agents. Remember context, decisions, and code patterns across sessions. Works with Copilot, Claude, and more.", "publisher": "EcuaByte",