Skip to content
Merged
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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## [0.26.0](https://github.com/archgate/cli/compare/v0.25.1...v0.26.0) (2026-03-24)

### Features

* add doctor command and auto-detect editors ([#166](https://github.com/archgate/cli/issues/166)) ([ec5be2a](https://github.com/archgate/cli/commit/ec5be2a27346737a17b1574d845a3cd942e0e3c3))
* add global --log-level option ([#170](https://github.com/archgate/cli/issues/170)) ([972028e](https://github.com/archgate/cli/commit/972028e3b3928358925c334635b67a2661b9d99e))

### Bug Fixes

* filter Sentry noise from tests and user cancellations ([#169](https://github.com/archgate/cli/issues/169)) ([2c988b6](https://github.com/archgate/cli/commit/2c988b6616bf509870e91abb11edcba7abce1c5b))

## [0.25.1](https://github.com/archgate/cli/compare/v0.25.0...v0.25.1) (2026-03-24)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ export default defineConfig({
applicationCategory: "DeveloperApplication",
applicationSubCategory: "Code Governance",
operatingSystem: "macOS, Linux, Windows",
softwareVersion: "0.25.1",
softwareVersion: "0.26.0",
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.25.1" }
{ "version": "v0.26.0" }
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "archgate",
"version": "0.25.1",
"version": "0.26.0",
"description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents",
"keywords": [
"adr",
Expand Down Expand Up @@ -76,9 +76,9 @@
"typescript": "^5 || ^6.0.0"
},
"optionalDependencies": {
"archgate-darwin-arm64": "0.25.1",
"archgate-linux-x64": "0.25.1",
"archgate-win32-x64": "0.25.1"
"archgate-darwin-arm64": "0.26.0",
"archgate-linux-x64": "0.26.0",
"archgate-win32-x64": "0.26.0"
},
"readme": "README.md"
}
Loading