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 42bcbd0..d636add 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [0.1.9](https://github.com/HayoDev/crystallize-mcp/compare/crystallize-mcp-v0.1.8...crystallize-mcp-v0.1.9) (2026-04-10) + + +### 🎉 Features + +* support content chunk updates with dot notation and fix richTex… ([#18](https://github.com/HayoDev/crystallize-mcp/issues/18)) ([a68f6b8](https://github.com/HayoDev/crystallize-mcp/commit/a68f6b8e3d4c57da475722149561ce5d96720906)) + ## [0.1.8](https://github.com/HayoDev/crystallize-mcp/compare/crystallize-mcp-v0.1.7...crystallize-mcp-v0.1.8) (2026-04-10) diff --git a/package-lock.json b/package-lock.json index b49543e..acf197f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@hayodev/crystallize-mcp", - "version": "0.1.8", + "version": "0.1.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@hayodev/crystallize-mcp", - "version": "0.1.8", + "version": "0.1.9", "license": "MIT", "dependencies": { "@crystallize/js-api-client": "^4.0.0", diff --git a/package.json b/package.json index b79c3df..96d7acf 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@hayodev/crystallize-mcp", "mcpName": "io.github.HayoDev/crystallize-mcp", - "version": "0.1.8", + "version": "0.1.9", "description": "Crystallize MCP — headless commerce tools for AI agents. Browse catalogue, search products, inspect shapes, manage orders via Model Context Protocol.", "type": "module", "main": "build/src/index.js", diff --git a/server.json b/server.json index a4dad53..0ecc587 100644 --- a/server.json +++ b/server.json @@ -7,13 +7,13 @@ "url": "https://github.com/HayoDev/crystallize-mcp", "source": "github" }, - "version": "0.1.8", + "version": "0.1.9", "packages": [ { "registryType": "npm", "registryBaseUrl": "https://registry.npmjs.org", "identifier": "@hayodev/crystallize-mcp", - "version": "0.1.8", + "version": "0.1.9", "runtimeHint": "npx", "transport": { "type": "stdio" diff --git a/src/version.ts b/src/version.ts index 8d4dbfa..ebc3b04 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1,3 +1,3 @@ // x-release-please-start-version -export const VERSION = '0.1.8'; +export const VERSION = '0.1.9'; // x-release-please-end