[object Object]

← back to Cli Printing Press

chore(main): release 1.2.0 (#144)

2e3b78607917b556cc74e3465934338c9b44d3ad · 2026-04-07 17:59:39 -0700 · github-actions[bot]

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>

Files touched

Diff

commit 2e3b78607917b556cc74e3465934338c9b44d3ad
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Tue Apr 7 17:59:39 2026 -0700

    chore(main): release 1.2.0 (#144)
    
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
---
 .claude-plugin/marketplace.json | 10 ++++++++--
 .claude-plugin/plugin.json      |  2 +-
 .release-please-manifest.json   |  2 +-
 CHANGELOG.md                    | 14 ++++++++++++++
 internal/version/version.go     |  2 +-
 5 files changed, 25 insertions(+), 5 deletions(-)

diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json
index 903ac09b..b784e48e 100644
--- a/.claude-plugin/marketplace.json
+++ b/.claude-plugin/marketplace.json
@@ -6,13 +6,19 @@
   "plugins": [
     {
       "name": "cli-printing-press",
-      "version": "1.1.0",
+      "version": "1.2.0",
       "description": "Describe your API. Get a production CLI. Generates Go CLI tools from OpenAPI specs or natural language descriptions.",
       "author": {
         "name": "mvanhorn"
       },
       "repository": "mvanhorn/cli-printing-press",
-      "tags": ["cli", "codegen", "openapi", "go", "api"],
+      "tags": [
+        "cli",
+        "codegen",
+        "openapi",
+        "go",
+        "api"
+      ],
       "source": {
         "source": "github",
         "repo": "mvanhorn/cli-printing-press"
diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json
index 7978f61b..0863d429 100644
--- a/.claude-plugin/plugin.json
+++ b/.claude-plugin/plugin.json
@@ -1,6 +1,6 @@
 {
   "name": "cli-printing-press",
-  "version": "1.1.0",
+  "version": "1.2.0",
   "description": "Generate production Go CLIs from API descriptions or OpenAPI specs",
   "repository": "mvanhorn/cli-printing-press"
 }
diff --git a/.release-please-manifest.json b/.release-please-manifest.json
index 5fdd8830..c3f14639 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
 {
-  ".": "1.1.0"
+  ".": "1.2.0"
 }
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0e234f13..2b8887a3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,19 @@
 # Changelog
 
+## [1.2.0](https://github.com/mvanhorn/cli-printing-press/compare/v1.1.0...v1.2.0) (2026-04-08)
+
+
+### Features
+
+* **cli:** MCP readiness layer — per-endpoint auth awareness and metadata ([#145](https://github.com/mvanhorn/cli-printing-press/issues/145)) ([51afd77](https://github.com/mvanhorn/cli-printing-press/commit/51afd77877ca1d2e07f8eb56bc831ebf74d62a0c))
+* **cli:** mega MCP — generic HTTP proxy with activation model ([#147](https://github.com/mvanhorn/cli-printing-press/issues/147)) ([e041f50](https://github.com/mvanhorn/cli-printing-press/commit/e041f50e7b46f29875e7eee342a0e3081a3868dd))
+
+
+### Bug Fixes
+
+* **cli:** Dub retro — FTS batch indexing, retry cap, dogfood auth, root dedup, dead code ([#143](https://github.com/mvanhorn/cli-printing-press/issues/143)) ([349580a](https://github.com/mvanhorn/cli-printing-press/commit/349580afbfb388c6c3750f32c8403e599f180adb))
+* **cli:** sync version files to 1.1.0 and fix release-please config ([#146](https://github.com/mvanhorn/cli-printing-press/issues/146)) ([3393ada](https://github.com/mvanhorn/cli-printing-press/commit/3393ada0f39ec2b4918d034a632c6259ddc9c900))
+
 ## [1.1.0](https://github.com/mvanhorn/cli-printing-press/compare/v1.0.0...v1.1.0) (2026-04-06)
 
 
diff --git a/internal/version/version.go b/internal/version/version.go
index eb62fd8a..c50601e7 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -7,7 +7,7 @@ import (
 
 // Version is the current printing-press version. It is set at build time
 // via ldflags for tagged releases, or falls back to the hardcoded value.
-var Version = "1.1.0" // x-release-please-version
+var Version = "1.2.0" // x-release-please-version
 
 func init() {
 	info, ok := debug.ReadBuildInfo()

← e041f50e feat(cli): mega MCP — generic HTTP proxy with activation mod  ·  back to Cli Printing Press  ·  refactor(cli): library directories keyed by API slug instead 36ed047f →