imgx-mcp 1.1.0 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,16 @@
1
1
  # Changelog
2
2
 
3
+ ## 1.1.1 (2026-03-04)
4
+
5
+ ### Added
6
+
7
+ - **`CLAUDE.md`** — Project instructions for Claude Code (release flow reference, dev commands, architecture overview, project config)
8
+ - **`RELEASING.md` full rewrite** — 4-step checklist expanded to 11-step mandatory release flow covering test, version update, build, publish, MCP verification, app-division-ops docs, and public distribution
9
+
10
+ ### Fixed
11
+
12
+ - **Plugin/registry version sync** — `server.json`, `.claude-plugin/plugin.json`, `.claude-plugin/marketplace.json`, `.cursor-plugin/plugin.json` were stuck at v1.0.4; now updated to match the actual release version
13
+
3
14
  ## 1.1.0 (2026-03-04)
4
15
 
5
16
  ### Added
@@ -40213,7 +40213,7 @@ function runRedo() {
40213
40213
  }
40214
40214
 
40215
40215
  // build/cli/index.js
40216
- var VERSION2 = "1.1.0";
40216
+ var VERSION2 = "1.1.1";
40217
40217
  var HELP = `imgx v${VERSION2} \u2014 AI image generation and editing for MCP-compatible AI agents
40218
40218
 
40219
40219
  Commands:
@@ -69882,7 +69882,7 @@ function buildImageContent(images, paths, extra) {
69882
69882
  }
69883
69883
  var server = new McpServer({
69884
69884
  name: "imgx",
69885
- version: "1.1.0"
69885
+ version: "1.1.1"
69886
69886
  });
69887
69887
  initGemini();
69888
69888
  initOpenAI();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "imgx-mcp",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "mcpName": "io.github.somacoffeekyoto/imgx",
5
5
  "description": "AI image generation and editing for Claude Code, Codex CLI, and MCP-compatible AI agents",
6
6
  "type": "module",