← back to Cli Printing Press
chore(main): release 3.6.0 (#509)
53203a0c49b9b868a38bc55202cf4c573892c2ba · 2026-05-02 13:31:15 -0700 · github-actions[bot]
Files touched
M .claude-plugin/plugin.jsonM .release-please-manifest.jsonM CHANGELOG.mdM internal/version/version.go
Diff
commit 53203a0c49b9b868a38bc55202cf4c573892c2ba
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date: Sat May 2 13:31:15 2026 -0700
chore(main): release 3.6.0 (#509)
---
.claude-plugin/plugin.json | 2 +-
.release-please-manifest.json | 2 +-
CHANGELOG.md | 12 ++++++++++++
internal/version/version.go | 2 +-
4 files changed, 15 insertions(+), 3 deletions(-)
diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json
index 4c1a98bb..22743d47 100644
--- a/.claude-plugin/plugin.json
+++ b/.claude-plugin/plugin.json
@@ -1,6 +1,6 @@
{
"name": "cli-printing-press",
- "version": "3.5.0",
+ "version": "3.6.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 3cf104e9..dc703804 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "3.5.0"
+ ".": "3.6.0"
}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 38136a04..3bc690be 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,17 @@
# Changelog
+## [3.6.0](https://github.com/mvanhorn/cli-printing-press/compare/v3.5.0...v3.6.0) (2026-05-02)
+
+
+### Features
+
+* **cli:** README template links to release page for binary + MCPB ([#508](https://github.com/mvanhorn/cli-printing-press/issues/508)) ([73468ba](https://github.com/mvanhorn/cli-printing-press/commit/73468bac246ff3116cf2d85693c35a80e5ece7b2))
+
+
+### Bug Fixes
+
+* **cli:** handle sentry openapi generation ([#507](https://github.com/mvanhorn/cli-printing-press/issues/507)) ([e37cff9](https://github.com/mvanhorn/cli-printing-press/commit/e37cff9d36101695268636badbeb341670f9e9ff))
+
## [3.5.0](https://github.com/mvanhorn/cli-printing-press/compare/v3.4.3...v3.5.0) (2026-05-02)
diff --git a/internal/version/version.go b/internal/version/version.go
index 7fe04d18..28466ee2 100644
--- a/internal/version/version.go
+++ b/internal/version/version.go
@@ -8,7 +8,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 = "3.5.0" // x-release-please-version
+var Version = "3.6.0" // x-release-please-version
// pseudoVersionSuffix matches the trailing `yyyymmddhhmmss-abcdefabcdef`
// (14-digit timestamp + 12-char commit hash) shared by every Go pseudo-version
← e37cff9d fix(cli): handle sentry openapi generation (#507)
·
back to Cli Printing Press
·
fix(cli): OpenAPI parser walks per-operation servers as fall 702f54a1 →