← back to Cli Printing Press
chore(main): release 4.8.0 (#1491)
6fc98d750ae7a80caad03bf1ffef0a96b4e46e0f · 2026-05-15 21:36:38 -0700 · Matt Van Horn
Files touched
M .claude-plugin/plugin.jsonM .release-please-manifest.jsonM CHANGELOG.mdM internal/version/version.go
Diff
commit 6fc98d750ae7a80caad03bf1ffef0a96b4e46e0f
Author: Matt Van Horn <mvanhorn@users.noreply.github.com>
Date: Fri May 15 21:36:38 2026 -0700
chore(main): release 4.8.0 (#1491)
---
.claude-plugin/plugin.json | 2 +-
.release-please-manifest.json | 2 +-
CHANGELOG.md | 17 +++++++++++++++++
internal/version/version.go | 2 +-
4 files changed, 20 insertions(+), 3 deletions(-)
diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json
index 0714ec67..e0242f91 100644
--- a/.claude-plugin/plugin.json
+++ b/.claude-plugin/plugin.json
@@ -1,6 +1,6 @@
{
"name": "cli-printing-press",
- "version": "4.7.0",
+ "version": "4.8.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 c0f9e2df..1ed3fbdc 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "4.7.0"
+ ".": "4.8.0"
}
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 94b98c77..d1e451c2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,22 @@
# Changelog
+## [4.8.0](https://github.com/mvanhorn/cli-printing-press/compare/v4.7.0...v4.8.0) (2026-05-16)
+
+
+### Features
+
+* **cli:** add ElevenLabs generation support ([#1307](https://github.com/mvanhorn/cli-printing-press/issues/1307)) ([5f43de5](https://github.com/mvanhorn/cli-printing-press/commit/5f43de505252859e2ebbe846a4ecffb598e7655d))
+
+
+### Bug Fixes
+
+* **ci:** switch queue update_method to merge so fork PRs can queue ([#1492](https://github.com/mvanhorn/cli-printing-press/issues/1492)) ([2d0ad5a](https://github.com/mvanhorn/cli-printing-press/commit/2d0ad5ae7a6007034d8e743bebc8515383490aa3))
+* **cli:** doctor preserves configured User-Agent when API uses UA as auth credential ([#1361](https://github.com/mvanhorn/cli-printing-press/issues/1361)) ([3bb6d37](https://github.com/mvanhorn/cli-printing-press/commit/3bb6d37bfbe94e675051bc6c453dd32ad9985e07))
+* **cli:** expand pm_stale timestamp-field list for non-updated_at APIs ([#1461](https://github.com/mvanhorn/cli-printing-press/issues/1461)) ([55f5b26](https://github.com/mvanhorn/cli-printing-press/commit/55f5b26b0a45e30c3917bd6b14c400e0c5450dad))
+* **cli:** probe nested path-param leaves so verify catches `args[]` index bugs ([#1434](https://github.com/mvanhorn/cli-printing-press/issues/1434)) ([5460c32](https://github.com/mvanhorn/cli-printing-press/commit/5460c32aa10373023060fffeceb7f8ada1fcfd5f))
+* **cli:** short-circuit sync on dry-run sentinel response ([#1471](https://github.com/mvanhorn/cli-printing-press/issues/1471)) ([f8d3ba8](https://github.com/mvanhorn/cli-printing-press/commit/f8d3ba803f0b483305737ef5259c8e09c3e26c86))
+* **cli:** use Chrome User-Agent for synthetic/cookie/composed/session_handshake CLIs ([#1479](https://github.com/mvanhorn/cli-printing-press/issues/1479)) ([d7ccd85](https://github.com/mvanhorn/cli-printing-press/commit/d7ccd8502e41eca152f03e88985527ec2338b839)), closes [#1293](https://github.com/mvanhorn/cli-printing-press/issues/1293)
+
## [4.7.0](https://github.com/mvanhorn/cli-printing-press/compare/v4.6.1...v4.7.0) (2026-05-15)
diff --git a/internal/version/version.go b/internal/version/version.go
index c322e1bc..7e88a420 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 = "4.7.0" // x-release-please-version
+var Version = "4.8.0" // x-release-please-version
// pseudoVersionSuffix matches the trailing `yyyymmddhhmmss-abcdefabcdef`
// (14-digit timestamp + 12-char commit hash) shared by every Go pseudo-version
← f8d3ba80 fix(cli): short-circuit sync on dry-run sentinel response (#
·
back to Cli Printing Press
·
feat(cli): expose PRINTING_PRESS_DOGFOOD env signal for long 96fca081 →