Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [0.45.4](https://github.com/archgate/cli/compare/v0.45.3...v0.45.4) (2026-06-14)

### Bug Fixes

* **import:** improve error messages and extract business logic ([#413](https://github.com/archgate/cli/issues/413)) ([337beae](https://github.com/archgate/cli/commit/337beaeb62926e196c582c8946227eee500f4415))

## [0.45.3](https://github.com/archgate/cli/compare/v0.45.2...v0.45.3) (2026-06-11)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ export default defineConfig({
applicationCategory: "DeveloperApplication",
applicationSubCategory: "Code Linting",
operatingSystem: "macOS, Linux, Windows",
softwareVersion: "0.45.3",
softwareVersion: "0.45.4",
license: "https://github.com/archgate/cli/blob/main/LICENSE",
offers: { "@type": "Offer", price: "0", priceCurrency: "USD" },
url: "https://cli.archgate.dev",
Expand Down
2 changes: 1 addition & 1 deletion docs/public/version.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{ "version": "v0.45.3" }
{ "version": "v0.45.4" }
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "archgate",
"version": "0.45.3",
"version": "0.45.4",
"description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents",
"keywords": [
"adr",
Expand Down
2 changes: 1 addition & 1 deletion shims/go/internal/shim/shim.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

// Version is the archgate CLI version this shim downloads.
const Version = "0.45.3"
const Version = "0.45.4"

const (
releaseBaseURL = "https://github.com/archgate/cli/releases/download"
Expand Down
2 changes: 1 addition & 1 deletion shims/maven/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>dev.archgate</groupId>
<artifactId>archgate-cli</artifactId>
<version>0.45.3</version>
<version>0.45.4</version>
<packaging>jar</packaging>

<name>archgate-cli</name>
Expand Down
2 changes: 1 addition & 1 deletion shims/maven/src/main/java/dev/archgate/cli/Shim.java
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
*/
public final class Shim {

private static final String VERSION = "0.45.3";
private static final String VERSION = "0.45.4";
private static final String BASE_URL = "https://github.com/archgate/cli/releases/download/v" + VERSION + "/";

private Shim() {}
Expand Down
2 changes: 1 addition & 1 deletion shims/nuget/Archgate.Tool/Archgate.Tool.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<PackAsTool>true</PackAsTool>
<ToolCommandName>archgate</ToolCommandName>
<PackageId>archgate</PackageId>
<Version>0.45.3</Version>
<Version>0.45.4</Version>
<Description>Enforce Architecture Decision Records as executable rules — for both humans and AI agents</Description>
<Authors>Archgate</Authors>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion shims/nuget/Archgate.Tool/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Archgate.Tool;

internal static class Program
{
private const string Version = "0.45.3";
private const string Version = "0.45.4";

private static readonly string CacheDir = Path.Join(
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),
Expand Down
2 changes: 1 addition & 1 deletion shims/pypi/archgate/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.45.3"
__version__ = "0.45.4"
2 changes: 1 addition & 1 deletion shims/pypi/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "hatchling.build"

[project]
name = "archgate"
version = "0.45.3"
version = "0.45.4"
description = "Enforce Architecture Decision Records as executable rules — for both humans and AI agents"
readme = "README.md"
requires-python = ">=3.8"
Expand Down
2 changes: 1 addition & 1 deletion shims/rubygem/lib/archgate/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module Archgate
VERSION = "0.45.3"
VERSION = "0.45.4"
end
Loading