Skip to content

Commit b1faabd

Browse files
chore(release): 0.52.0
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 04e05fa commit b1faabd

12 files changed

Lines changed: 22 additions & 11 deletions

File tree

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## [0.52.0](https://github.com/archgate/cli/compare/v0.51.0...v0.52.0) (2026-07-27)
2+
3+
### ⚠ BREAKING CHANGES
4+
5+
* add --strict and --output <format> (SARIF), remove --json/--ci/--max-warnings from check (#536)
6+
7+
### Features
8+
9+
* add --strict and --output <format> (SARIF), remove --json/--ci/--max-warnings from check ([#536](https://github.com/archgate/cli/issues/536)) ([70b1ede](https://github.com/archgate/cli/commit/70b1edee1f9ba38e6ad0a73ebc1898289e4b6f42))
10+
* **lint:** migrate to TypeScript 7 and adopt oxlint type-aware linting ([#534](https://github.com/archgate/cli/issues/534)) ([29daad8](https://github.com/archgate/cli/commit/29daad886dae8f3da80bb9e2af7bde2629ed9d35)), references [#529](https://github.com/archgate/cli/issues/529)
11+
112
## [0.51.0](https://github.com/archgate/cli/compare/v0.50.0...v0.51.0) (2026-07-26)
213

314
### Features

docs/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export default defineConfig({
183183
applicationCategory: "DeveloperApplication",
184184
applicationSubCategory: "Code Linting",
185185
operatingSystem: "macOS, Linux, Windows",
186-
softwareVersion: "0.51.0",
186+
softwareVersion: "0.52.0",
187187
license: "https://github.com/archgate/cli/blob/main/LICENSE",
188188
offers: { "@type": "Offer", price: "0", priceCurrency: "USD" },
189189
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.51.0" }
1+
{ "version": "v0.52.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.51.0",
3+
"version": "0.52.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.51.0"
19+
const Version = "0.52.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.51.0</version>
9+
<version>0.52.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.51.0";
33+
private static final String VERSION = "0.52.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.51.0</Version>
9+
<Version>0.52.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.51.0";
11+
private const string Version = "0.52.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.51.0"
1+
__version__ = "0.52.0"

0 commit comments

Comments
 (0)