From 42cc2e646906056ededd5b8c2719cc4af78fe2ee Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 6 Jul 2026 18:30:21 +0000 Subject: [PATCH] chore(release): 0.47.0 Signed-off-by: github-actions[bot] --- CHANGELOG.md | 7 +++++++ 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, 18 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d7be424b..af639b68 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [0.47.0](https://github.com/archgate/cli/compare/v0.46.1...v0.47.0) (2026-07-06) + +### Features + +* ast-aware rule context (ctx.ast) for TS/JS/Python/Ruby ([#452](https://github.com/archgate/cli/issues/452)) ([81f68c8](https://github.com/archgate/cli/commit/81f68c85a5cdc3890460ca6e3e82db05cf32a3d1)) +* **engine:** injectable AST timeout, BOM coverage, .cts support ([#457](https://github.com/archgate/cli/issues/457)) ([32ad715](https://github.com/archgate/cli/commit/32ad715e73536113c9187aa37e320e2d60c153c6)), closes [#453](https://github.com/archgate/cli/issues/453) [#454](https://github.com/archgate/cli/issues/454) [#455](https://github.com/archgate/cli/issues/455) + ## [0.46.1](https://github.com/archgate/cli/compare/v0.46.0...v0.46.1) (2026-07-03) ### Bug Fixes diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index a7d1b0dc..7df157e9 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.46.1", + softwareVersion: "0.47.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 29e98aa0..91db3543 100644 --- a/docs/public/version.json +++ b/docs/public/version.json @@ -1 +1 @@ -{ "version": "v0.46.1" } +{ "version": "v0.47.0" } diff --git a/package.json b/package.json index 18b4e10b..ff73a02b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "archgate", - "version": "0.46.1", + "version": "0.47.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 65401d6e..bd5fb6e5 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.46.1" +const Version = "0.47.0" const ( releaseBaseURL = "https://github.com/archgate/cli/releases/download" diff --git a/shims/maven/pom.xml b/shims/maven/pom.xml index f75d568b..8c57849d 100644 --- a/shims/maven/pom.xml +++ b/shims/maven/pom.xml @@ -6,7 +6,7 @@ dev.archgate archgate-cli - 0.46.1 + 0.47.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 764c4abc..cfcecc92 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.46.1"; + private static final String VERSION = "0.47.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 f207c580..5144b0c3 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.46.1 + 0.47.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 06a5bd3c..db9a25e1 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.46.1"; + private const string Version = "0.47.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 cffb82c5..bf97bc40 100644 --- a/shims/pypi/archgate/_version.py +++ b/shims/pypi/archgate/_version.py @@ -1 +1 @@ -__version__ = "0.46.1" +__version__ = "0.47.0" diff --git a/shims/pypi/pyproject.toml b/shims/pypi/pyproject.toml index 3a96b644..d4d37a8c 100644 --- a/shims/pypi/pyproject.toml +++ b/shims/pypi/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "archgate" -version = "0.46.1" +version = "0.47.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 66dbf2ec..a55e3104 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.46.1" + VERSION = "0.47.0" end