diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2037b3fc..fa58904c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,9 @@
+## [0.41.1](https://github.com/archgate/cli/compare/v0.41.0...v0.41.1) (2026-05-29)
+
+### Bug Fixes
+
+* **shims:** fix rubygem and pypi publish failures ([#377](https://github.com/archgate/cli/issues/377)) ([76324d1](https://github.com/archgate/cli/commit/76324d163526038f8ebb3d4d6f07aa23ed65e5f4)), closes [#378](https://github.com/archgate/cli/issues/378)
+
## [0.41.0](https://github.com/archgate/cli/compare/v0.40.0...v0.41.0) (2026-05-29)
### Features
diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs
index 7d622768..3061e6bb 100644
--- a/docs/astro.config.mjs
+++ b/docs/astro.config.mjs
@@ -182,7 +182,7 @@ export default defineConfig({
applicationCategory: "DeveloperApplication",
applicationSubCategory: "Code Governance",
operatingSystem: "macOS, Linux, Windows",
- softwareVersion: "0.41.0",
+ softwareVersion: "0.41.1",
license: "https://github.com/archgate/cli/blob/main/LICENSE",
offers: { "@type": "Offer", price: "0", priceCurrency: "USD" },
url: "https://cli.archgate.dev",
diff --git a/docs/public/version.json b/docs/public/version.json
index 2830cc07..97a3be12 100644
--- a/docs/public/version.json
+++ b/docs/public/version.json
@@ -1 +1 @@
-{ "version": "v0.41.0" }
+{ "version": "v0.41.1" }
diff --git a/package.json b/package.json
index e1c69fc1..3be614da 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "archgate",
- "version": "0.41.0",
+ "version": "0.41.1",
"description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents",
"keywords": [
"adr",
diff --git a/shims/go/internal/shim/shim.go b/shims/go/internal/shim/shim.go
index d7107ebe..a61f887a 100644
--- a/shims/go/internal/shim/shim.go
+++ b/shims/go/internal/shim/shim.go
@@ -16,7 +16,7 @@ import (
)
// Version is the archgate CLI version this shim downloads.
-const Version = "0.41.0"
+const Version = "0.41.1"
const (
releaseBaseURL = "https://github.com/archgate/cli/releases/download"
diff --git a/shims/maven/pom.xml b/shims/maven/pom.xml
index d4b37efc..2efc0727 100644
--- a/shims/maven/pom.xml
+++ b/shims/maven/pom.xml
@@ -6,7 +6,7 @@
dev.archgate
archgate-cli
- 0.41.0
+ 0.41.1
jar
archgate-cli
diff --git a/shims/nuget/Archgate.Tool/Archgate.Tool.csproj b/shims/nuget/Archgate.Tool/Archgate.Tool.csproj
index 3db8e5a8..8258912b 100644
--- a/shims/nuget/Archgate.Tool/Archgate.Tool.csproj
+++ b/shims/nuget/Archgate.Tool/Archgate.Tool.csproj
@@ -6,7 +6,7 @@
true
archgate
archgate
- 0.41.0
+ 0.41.1
Enforce Architecture Decision Records as executable rules — for both humans and AI agents
Archgate
Apache-2.0
diff --git a/shims/pypi/archgate/_version.py b/shims/pypi/archgate/_version.py
index 22ffde20..d0ccb05a 100644
--- a/shims/pypi/archgate/_version.py
+++ b/shims/pypi/archgate/_version.py
@@ -1 +1 @@
-__version__ = "0.41.0"
+__version__ = "0.41.1"
diff --git a/shims/pypi/pyproject.toml b/shims/pypi/pyproject.toml
index b3d7218a..dadfe6ee 100644
--- a/shims/pypi/pyproject.toml
+++ b/shims/pypi/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "archgate"
-version = "0.41.0"
+version = "0.41.1"
description = "Enforce Architecture Decision Records as executable rules — for both humans and AI agents"
readme = "README.md"
requires-python = ">=3.8"
diff --git a/shims/rubygem/lib/archgate/version.rb b/shims/rubygem/lib/archgate/version.rb
index 6a2af09a..6ec05845 100644
--- a/shims/rubygem/lib/archgate/version.rb
+++ b/shims/rubygem/lib/archgate/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Archgate
- VERSION = "0.41.0"
+ VERSION = "0.41.1"
end