From ed11e11697c7efd79dc15da90f778d77a1b4d0fd Mon Sep 17 00:00:00 2001 From: Victor Velazquez Date: Thu, 3 Sep 2026 13:58:12 +0200 Subject: [PATCH] chore: release v2.1.0 Bumps package.json, the lockfile, and the McpServer version in src/index.ts. Contents are Phase 29 (commerce fluency, closed with a 100/100 acceptance proof), continuous integration, and the viewer performance fix. Minor rather than major: the one withdrawal in this range, responsive: "fixed", was a documented no-op the renderer never read. Passing it still succeeds and still renders, canvases carrying it still load, and the package exposes no typed library surface for a consumer to break against. --- package-lock.json | 4 ++-- package.json | 2 +- src/index.ts | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index be19cfe..4b0eace 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "framesmith", - "version": "2.0.0", + "version": "2.1.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "framesmith", - "version": "2.0.0", + "version": "2.1.0", "license": "MIT", "dependencies": { "@anthropic-ai/sdk": "^0.96.0", diff --git a/package.json b/package.json index 2c3ae6a..7f19227 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "framesmith", - "version": "2.0.0", + "version": "2.1.0", "description": "MCP server that gives any AI assistant a visual design canvas", "type": "module", "bin": { diff --git a/src/index.ts b/src/index.ts index bf4d608..e836dbc 100644 --- a/src/index.ts +++ b/src/index.ts @@ -88,7 +88,7 @@ Gotchas (current sharp edges): const server = new McpServer({ name: 'framesmith', - version: '2.0.0', + version: '2.1.0', }, { instructions: INSTRUCTIONS, });