diff --git a/CHANGELOG.md b/CHANGELOG.md
index 946db689..a2442485 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,11 @@
+## [0.45.7](https://github.com/archgate/cli/compare/v0.45.6...v0.45.7) (2026-06-27)
+
+### Bug Fixes
+
+* **deps:** update docs dependencies ([#437](https://github.com/archgate/cli/issues/437)) ([e8f10c1](https://github.com/archgate/cli/commit/e8f10c1c670691ca6433bacc1f7150c2482f3003))
+* handle parse errors in rule scanner and loader gracefully ([#432](https://github.com/archgate/cli/issues/432)) ([7c384d2](https://github.com/archgate/cli/commit/7c384d216655d892294cc33940adac53c87ecb77)), closes [#130690158](https://github.com/archgate/cli/issues/130690158)
+* resolve all knip unused dependency and unlisted binary warnings ([#434](https://github.com/archgate/cli/issues/434)) ([d7690b2](https://github.com/archgate/cli/commit/d7690b2e9e3576446b356899518692b8979449a5))
+
## [0.45.6](https://github.com/archgate/cli/compare/v0.45.5...v0.45.6) (2026-06-22)
### Bug Fixes
diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs
index c4fbb3b1..08091c47 100644
--- a/docs/astro.config.mjs
+++ b/docs/astro.config.mjs
@@ -183,7 +183,7 @@ export default defineConfig({
applicationCategory: "DeveloperApplication",
applicationSubCategory: "Code Linting",
operatingSystem: "macOS, Linux, Windows",
- softwareVersion: "0.45.6",
+ softwareVersion: "0.45.7",
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 a745456f..68addd11 100644
--- a/docs/public/version.json
+++ b/docs/public/version.json
@@ -1 +1 @@
-{ "version": "v0.45.6" }
+{ "version": "v0.45.7" }
diff --git a/package.json b/package.json
index 81b51624..59008c88 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "archgate",
- "version": "0.45.6",
+ "version": "0.45.7",
"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 1d2305dc..92aea167 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.45.6"
+const Version = "0.45.7"
const (
releaseBaseURL = "https://github.com/archgate/cli/releases/download"
diff --git a/shims/maven/pom.xml b/shims/maven/pom.xml
index 0b53b478..27e3ce19 100644
--- a/shims/maven/pom.xml
+++ b/shims/maven/pom.xml
@@ -6,7 +6,7 @@
dev.archgate
archgate-cli
- 0.45.6
+ 0.45.7
jar
archgate-cli
diff --git a/shims/maven/src/main/java/dev/archgate/cli/Shim.java b/shims/maven/src/main/java/dev/archgate/cli/Shim.java
index 2f5ccc47..ac604608 100644
--- a/shims/maven/src/main/java/dev/archgate/cli/Shim.java
+++ b/shims/maven/src/main/java/dev/archgate/cli/Shim.java
@@ -30,7 +30,7 @@
*/
public final class Shim {
- private static final String VERSION = "0.45.6";
+ private static final String VERSION = "0.45.7";
private static final String BASE_URL = "https://github.com/archgate/cli/releases/download/v" + VERSION + "/";
private Shim() {}
diff --git a/shims/nuget/Archgate.Tool/Archgate.Tool.csproj b/shims/nuget/Archgate.Tool/Archgate.Tool.csproj
index 0f089270..42560e51 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.45.6
+ 0.45.7
Enforce Architecture Decision Records as executable rules — for both humans and AI agents
Archgate
Apache-2.0
diff --git a/shims/nuget/Archgate.Tool/Program.cs b/shims/nuget/Archgate.Tool/Program.cs
index 3d5c9f8b..be5a85df 100644
--- a/shims/nuget/Archgate.Tool/Program.cs
+++ b/shims/nuget/Archgate.Tool/Program.cs
@@ -8,7 +8,7 @@ namespace Archgate.Tool;
internal static class Program
{
- private const string Version = "0.45.6";
+ private const string Version = "0.45.7";
private static readonly string CacheDir = Path.Join(
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),
diff --git a/shims/pypi/archgate/_version.py b/shims/pypi/archgate/_version.py
index abc87942..1448401f 100644
--- a/shims/pypi/archgate/_version.py
+++ b/shims/pypi/archgate/_version.py
@@ -1 +1 @@
-__version__ = "0.45.6"
+__version__ = "0.45.7"
diff --git a/shims/pypi/pyproject.toml b/shims/pypi/pyproject.toml
index fe2ffa18..58bd6cf4 100644
--- a/shims/pypi/pyproject.toml
+++ b/shims/pypi/pyproject.toml
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project]
name = "archgate"
-version = "0.45.6"
+version = "0.45.7"
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 31a25052..c020fe74 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.45.6"
+ VERSION = "0.45.7"
end