[object Object]

← back to Cli Printing Press

chore(main): release 3.4.1 (#494)

a97b18c1df10405c27e1aa3491998d1afd10592b · 2026-05-01 22:14:59 -0700 · github-actions[bot]

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

Files touched

Diff

commit a97b18c1df10405c27e1aa3491998d1afd10592b
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Fri May 1 22:14:59 2026 -0700

    chore(main): release 3.4.1 (#494)
    
    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
---
 .claude-plugin/plugin.json    | 2 +-
 .release-please-manifest.json | 2 +-
 CHANGELOG.md                  | 8 ++++++++
 internal/version/version.go   | 2 +-
 4 files changed, 11 insertions(+), 3 deletions(-)

diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json
index d30d80d9..b4b6df0c 100644
--- a/.claude-plugin/plugin.json
+++ b/.claude-plugin/plugin.json
@@ -1,6 +1,6 @@
 {
   "name": "cli-printing-press",
-  "version": "3.4.0",
+  "version": "3.4.1",
   "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 9dc6cef9..b805e9a8 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
 {
-  ".": "3.4.0"
+  ".": "3.4.1"
 }
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 705e3a91..7cee2a44 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,13 @@
 # Changelog
 
+## [3.4.1](https://github.com/mvanhorn/cli-printing-press/compare/v3.4.0...v3.4.1) (2026-05-02)
+
+
+### Bug Fixes
+
+* **cli:** normalize lock name so slug and binary form share lock file ([#493](https://github.com/mvanhorn/cli-printing-press/issues/493)) ([820ba7b](https://github.com/mvanhorn/cli-printing-press/commit/820ba7b1fb543ee9b8c663c3f39b5a7f284822db))
+* **cli:** preserve Unicode in OpenAPI display_name ([#492](https://github.com/mvanhorn/cli-printing-press/issues/492)) ([67597db](https://github.com/mvanhorn/cli-printing-press/commit/67597dbb1a795ac19b5643f7cf06b266cc48ef28))
+
 ## [3.4.0](https://github.com/mvanhorn/cli-printing-press/compare/v3.3.0...v3.4.0) (2026-05-02)
 
 
diff --git a/internal/version/version.go b/internal/version/version.go
index b4a4edf6..933c96b7 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.4.0" // x-release-please-version
+var Version = "3.4.1" // x-release-please-version
 
 // pseudoVersionSuffix matches the trailing `yyyymmddhhmmss-abcdefabcdef`
 // (14-digit timestamp + 12-char commit hash) shared by every Go pseudo-version

← 820ba7b1 fix(cli): normalize lock name so slug and binary form share  ·  back to Cli Printing Press  ·  docs(cli): reorganize README, add badges and support section e4773196 →