Skip to content

Commit aab19dd

Browse files
chore(release): 0.43.0 (#391)
1 parent 64d0a7e commit aab19dd

12 files changed

Lines changed: 24 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,16 @@
1+
## [0.43.0](https://github.com/archgate/cli/compare/v0.41.1...v0.43.0) (2026-05-30)
2+
3+
### Features
4+
5+
* **engine:** add inline suppression via archgate-ignore comments ([#383](https://github.com/archgate/cli/issues/383)) ([1240860](https://github.com/archgate/cli/commit/12408603724f2bcb7be22950624e83563179e6ab))
6+
7+
### Bug Fixes
8+
9+
* **ci:** stop cancelling main branch CI runs on concurrent pushes ([#392](https://github.com/archgate/cli/issues/392)) ([9edabde](https://github.com/archgate/cli/commit/9edabde98ac23bf1fdeb244be634c4b54805f5ad))
10+
* **deps:** resolve dependency dashboard deprecation and lookup warnings ([#387](https://github.com/archgate/cli/issues/387)) ([18eae44](https://github.com/archgate/cli/commit/18eae4481b2210c796276ff0718fcd91cc9a8144)), closes [#107](https://github.com/archgate/cli/issues/107)
11+
* **docs:** restore Norwegian Bokmål diacritical marks across nb/ locale ([#384](https://github.com/archgate/cli/issues/384)) ([ef98b39](https://github.com/archgate/cli/commit/ef98b39ec0b85bc7f48c1325810b5d27323a138e))
12+
* **shims,docs:** resolve CodeQL and AI code quality findings ([#388](https://github.com/archgate/cli/issues/388)) ([63ec93f](https://github.com/archgate/cli/commit/63ec93fc3ebe603a856a24f5ffef8120e357ce4c))
13+
114
## [0.42.0](https://github.com/archgate/cli/compare/v0.41.1...v0.42.0) (2026-05-30)
215

316
### Features

docs/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export default defineConfig({
182182
applicationCategory: "DeveloperApplication",
183183
applicationSubCategory: "Code Governance",
184184
operatingSystem: "macOS, Linux, Windows",
185-
softwareVersion: "0.42.0",
185+
softwareVersion: "0.43.0",
186186
license: "https://github.com/archgate/cli/blob/main/LICENSE",
187187
offers: { "@type": "Offer", price: "0", priceCurrency: "USD" },
188188
url: "https://cli.archgate.dev",

docs/public/version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "version": "v0.42.0" }
1+
{ "version": "v0.43.0" }

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "archgate",
3-
"version": "0.42.0",
3+
"version": "0.43.0",
44
"description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents",
55
"keywords": [
66
"adr",

shims/go/internal/shim/shim.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import (
1616
)
1717

1818
// Version is the archgate CLI version this shim downloads.
19-
const Version = "0.42.0"
19+
const Version = "0.43.0"
2020

2121
const (
2222
releaseBaseURL = "https://github.com/archgate/cli/releases/download"

shims/maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>dev.archgate</groupId>
88
<artifactId>archgate-cli</artifactId>
9-
<version>0.42.0</version>
9+
<version>0.43.0</version>
1010
<packaging>jar</packaging>
1111

1212
<name>archgate-cli</name>

shims/maven/src/main/java/dev/archgate/cli/Shim.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
*/
3131
public final class Shim {
3232

33-
private static final String VERSION = "0.42.0";
33+
private static final String VERSION = "0.43.0";
3434
private static final String BASE_URL = "https://github.com/archgate/cli/releases/download/v" + VERSION + "/";
3535

3636
private Shim() {}

shims/nuget/Archgate.Tool/Archgate.Tool.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<PackAsTool>true</PackAsTool>
77
<ToolCommandName>archgate</ToolCommandName>
88
<PackageId>archgate</PackageId>
9-
<Version>0.42.0</Version>
9+
<Version>0.43.0</Version>
1010
<Description>Enforce Architecture Decision Records as executable rules — for both humans and AI agents</Description>
1111
<Authors>Archgate</Authors>
1212
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>

shims/nuget/Archgate.Tool/Program.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ namespace Archgate.Tool;
88

99
internal static class Program
1010
{
11-
private const string Version = "0.42.0";
11+
private const string Version = "0.43.0";
1212

1313
private static readonly string CacheDir = Path.Join(
1414
Environment.GetFolderPath(Environment.SpecialFolder.UserProfile),

shims/pypi/archgate/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.42.0"
1+
__version__ = "0.43.0"

0 commit comments

Comments
 (0)