[object Object]

← back to Cli Printing Press

chore(main): release 2.3.6 (#297)

42b0f1f4a92aba13cf17a1aeca1889108ea3c565 · 2026-04-25 18:16:09 -0700 · github-actions[bot]

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

Files touched

Diff

commit 42b0f1f4a92aba13cf17a1aeca1889108ea3c565
Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Date:   Sat Apr 25 18:16:09 2026 -0700

    chore(main): release 2.3.6 (#297)
    
    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                  | 7 +++++++
 internal/version/version.go   | 2 +-
 4 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/.claude-plugin/plugin.json b/.claude-plugin/plugin.json
index a288c2cb..64369be4 100644
--- a/.claude-plugin/plugin.json
+++ b/.claude-plugin/plugin.json
@@ -1,6 +1,6 @@
 {
   "name": "cli-printing-press",
-  "version": "2.3.5",
+  "version": "2.3.6",
   "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 9cbd27f6..53cc652d 100644
--- a/.release-please-manifest.json
+++ b/.release-please-manifest.json
@@ -1,3 +1,3 @@
 {
-  ".": "2.3.5"
+  ".": "2.3.6"
 }
diff --git a/CHANGELOG.md b/CHANGELOG.md
index cc25eb83..77edbb69 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,12 @@
 # Changelog
 
+## [2.3.6](https://github.com/mvanhorn/cli-printing-press/compare/v2.3.5...v2.3.6) (2026-04-26)
+
+
+### Bug Fixes
+
+* **cli:** normalize routing prefixes in OpenAPI paths ([#296](https://github.com/mvanhorn/cli-printing-press/issues/296)) ([1e06456](https://github.com/mvanhorn/cli-printing-press/commit/1e06456c34869c2e356cd7c10ca7c601d829c93d))
+
 ## [2.3.5](https://github.com/mvanhorn/cli-printing-press/compare/v2.3.4...v2.3.5) (2026-04-25)
 
 
diff --git a/internal/version/version.go b/internal/version/version.go
index 976c40ca..63a22d46 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 = "2.3.5" // x-release-please-version
+var Version = "2.3.6" // x-release-please-version
 
 func init() {
 	info, ok := debug.ReadBuildInfo()

← 1e06456c fix(cli): normalize routing prefixes in OpenAPI paths (#296)  ·  back to Cli Printing Press  ·  fix(cli): use /v2 module path so go install reports correct 1ab789ea →