← back to Cli Printing Press
fix(cli): sync version files to 1.1.0 and fix release-please config (#146)
3393ada0f39ec2b4918d034a632c6259ddc9c900 · 2026-04-07 07:48:10 -0700 · Matt Van Horn
All three version files (version.go, plugin.json, marketplace.json) were
stuck at 0.4.0 while the actual release was 1.1.0. Root cause: the
release.yml workflow passed release-type directly to the action, which
makes release-please use "simple mode" and ignore release-please-config.json
entirely — so the extra-files with jsonpath were never processed.
Fix: remove the inline release-type override so release-please reads
from release-please-config.json, where extra-files are configured.
Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Files touched
M .claude-plugin/marketplace.jsonM .claude-plugin/plugin.jsonM .github/workflows/release.ymlM internal/version/version.go
Diff
commit 3393ada0f39ec2b4918d034a632c6259ddc9c900
Author: Matt Van Horn <mvanhorn@users.noreply.github.com>
Date: Tue Apr 7 07:48:10 2026 -0700
fix(cli): sync version files to 1.1.0 and fix release-please config (#146)
All three version files (version.go, plugin.json, marketplace.json) were
stuck at 0.4.0 while the actual release was 1.1.0. Root cause: the
release.yml workflow passed release-type directly to the action, which
makes release-please use "simple mode" and ignore release-please-config.json
entirely — so the extra-files with jsonpath were never processed.
Fix: remove the inline release-type override so release-please reads
from release-please-config.json, where extra-files are configured.
Co-authored-by: Matt Van Horn <455140+mvanhorn@users.noreply.github.com>
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
---
.claude-plugin/marketplace.json | 2 +-
.claude-plugin/plugin.json | 2 +-
.github/workflows/release.yml | 2 --
internal/version/version.go | 2 +-
4 files changed, 3 insertions(+), 5 deletions(-)
diff --git a/.claude-plugin/marketplace.json b/.claude-plugin/marketplace.json
index aab7aad1..903ac09b 100644
--- a/.claude-plugin/marketplace.json
+++ b/.claude-plugin/marketplace.json
@@ -6,7 +6,7 @@
"plugins": [
{
"name": "cli-printing-press",
- "version": "0.4.0",
+ "version": "1.1.0",
"description": "Describe your API. Get a production CLI. Generates Go CLI tools from OpenAPI specs or natural language descriptions.",
"author": {
"name": "mvanhorn"
diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json
index 460184b7..7978f61b 100644
--- a/.claude-plugin/plugin.json
+++ b/.claude-plugin/plugin.json
@@ -1,6 +1,6 @@
{
"name": "cli-printing-press",
- "version": "0.4.0",
+ "version": "1.1.0",
"description": "Generate production Go CLIs from API descriptions or OpenAPI specs",
"repository": "mvanhorn/cli-printing-press"
}
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index e54a6a4d..c3d1e693 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -19,8 +19,6 @@ jobs:
steps:
- uses: googleapis/release-please-action@v4
id: release
- with:
- release-type: go
goreleaser:
needs: release-please
diff --git a/internal/version/version.go b/internal/version/version.go
index 903b57ed..eb62fd8a 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 = "0.4.0" // x-release-please-version
+var Version = "1.1.0" // x-release-please-version
func init() {
info, ok := debug.ReadBuildInfo()
← 51afd778 feat(cli): MCP readiness layer — per-endpoint auth awareness
·
back to Cli Printing Press
·
feat(cli): mega MCP — generic HTTP proxy with activation mod e041f50e →