From 71446f1f8206c31ef866dca0640c3c5baed3d569 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 10 Jun 2026 10:04:25 +0000 Subject: [PATCH] chore(release): 0.45.0 Signed-off-by: github-actions[bot] --- CHANGELOG.md | 11 +++++++++++ docs/astro.config.mjs | 2 +- docs/public/version.json | 2 +- package.json | 2 +- shims/go/internal/shim/shim.go | 2 +- shims/maven/pom.xml | 2 +- shims/maven/src/main/java/dev/archgate/cli/Shim.java | 2 +- shims/nuget/Archgate.Tool/Archgate.Tool.csproj | 2 +- shims/nuget/Archgate.Tool/Program.cs | 2 +- shims/pypi/archgate/_version.py | 2 +- shims/pypi/pyproject.toml | 2 +- shims/rubygem/lib/archgate/version.rb | 2 +- 12 files changed, 22 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 79ab93c..6923096 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +## [0.45.0](https://github.com/archgate/cli/compare/v0.43.0...v0.45.0) (2026-06-10) + +### Features + +* **cursor:** automated plugin install via tarball download ([#395](https://github.com/archgate/cli/issues/395)) ([41eb37e](https://github.com/archgate/cli/commit/41eb37ec8fed506ca3b29f1095eb62b001880219)) + +### Bug Fixes + +* **opencode:** extract to config dir and clean stale files on install ([#400](https://github.com/archgate/cli/issues/400)) ([51b41e7](https://github.com/archgate/cli/commit/51b41e7dcc28e13111658020102d0ae98b526d42)) +* **tests:** eliminate user-scope pollution and global module mocks in tests ([#401](https://github.com/archgate/cli/issues/401)) ([0cff642](https://github.com/archgate/cli/commit/0cff64231a1341b4e9df6ad21d950e26d8a84611)) + ## [0.44.0](https://github.com/archgate/cli/compare/v0.43.0...v0.44.0) (2026-06-09) ### Features diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index bc3894b..3db36f8 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -184,7 +184,7 @@ export default defineConfig({ applicationCategory: "DeveloperApplication", applicationSubCategory: "Code Governance", operatingSystem: "macOS, Linux, Windows", - softwareVersion: "0.44.0", + softwareVersion: "0.45.0", 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 51c5dc4..4603260 100644 --- a/docs/public/version.json +++ b/docs/public/version.json @@ -1 +1 @@ -{ "version": "v0.44.0" } +{ "version": "v0.45.0" } diff --git a/package.json b/package.json index d8ebec3..d0e8790 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "archgate", - "version": "0.44.0", + "version": "0.45.0", "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 b18aa8e..a4f97ea 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.44.0" +const Version = "0.45.0" const ( releaseBaseURL = "https://github.com/archgate/cli/releases/download" diff --git a/shims/maven/pom.xml b/shims/maven/pom.xml index de60dca..05566ba 100644 --- a/shims/maven/pom.xml +++ b/shims/maven/pom.xml @@ -6,7 +6,7 @@ dev.archgate archgate-cli - 0.44.0 + 0.45.0 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 ef88cdc..b62e320 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.44.0"; + private static final String VERSION = "0.45.0"; 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 6b5e3c6..4a54588 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.44.0 + 0.45.0 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 1fdc49f..b30ab1c 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.44.0"; + private const string Version = "0.45.0"; 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 1b33897..4d8afa5 100644 --- a/shims/pypi/archgate/_version.py +++ b/shims/pypi/archgate/_version.py @@ -1 +1 @@ -__version__ = "0.44.0" +__version__ = "0.45.0" diff --git a/shims/pypi/pyproject.toml b/shims/pypi/pyproject.toml index 9d6c7c3..87376b6 100644 --- a/shims/pypi/pyproject.toml +++ b/shims/pypi/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "archgate" -version = "0.44.0" +version = "0.45.0" 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 bba1cfd..a6ce603 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.44.0" + VERSION = "0.45.0" end