diff --git a/CHANGELOG.md b/CHANGELOG.md index 306311f4..86092206 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +## [0.17.0](https://github.com/archgate/cli/compare/v0.16.0...v0.17.0) (2026-03-21) + +### Features + +* auto-compact JSON output in agent contexts ([#108](https://github.com/archgate/cli/issues/108)) ([314e909](https://github.com/archgate/cli/commit/314e909c72c38c17797f9231b7d739ca8be6519e)) + +### Bug Fixes + +* correct login refresh hint from option to subcommand ([03ffeff](https://github.com/archgate/cli/commit/03ffeff5c82abd3803b69746055360bfd736cb5c)) +* resolve consistency issues across CLI codebase ([#101](https://github.com/archgate/cli/issues/101)) ([4e182da](https://github.com/archgate/cli/commit/4e182da79f7943fa6d97af8251707d052077c939)) +* security hardening across CLI ([#104](https://github.com/archgate/cli/issues/104)) ([ba2ba49](https://github.com/archgate/cli/commit/ba2ba49bf90b5b7abddd71d298190a621762034c)) + ## [0.16.0](https://github.com/archgate/cli/compare/v0.15.0...v0.16.0) (2026-03-20) ### Features diff --git a/bun.lock b/bun.lock index b6fefc4a..626ea0a8 100644 --- a/bun.lock +++ b/bun.lock @@ -19,9 +19,9 @@ "zod": "4.3.6", }, "optionalDependencies": { - "archgate-darwin-arm64": "0.16.0", - "archgate-linux-x64": "0.16.0", - "archgate-win32-x64": "0.16.0", + "archgate-darwin-arm64": "0.17.0", + "archgate-linux-x64": "0.17.0", + "archgate-win32-x64": "0.17.0", }, "peerDependencies": { "typescript": "^5", diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index d964093f..c6ff4a1d 100644 --- a/docs/astro.config.mjs +++ b/docs/astro.config.mjs @@ -177,7 +177,7 @@ export default defineConfig({ applicationCategory: "DeveloperApplication", applicationSubCategory: "Code Governance", operatingSystem: "macOS, Linux, Windows", - softwareVersion: "0.16.0", + softwareVersion: "0.17.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/package.json b/package.json index b3d68e66..5c8068d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "archgate", - "version": "0.16.0", + "version": "0.17.0", "description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents", "keywords": [ "adr", @@ -73,9 +73,9 @@ "typescript": "^5" }, "optionalDependencies": { - "archgate-darwin-arm64": "0.16.0", - "archgate-linux-x64": "0.16.0", - "archgate-win32-x64": "0.16.0" + "archgate-darwin-arm64": "0.17.0", + "archgate-linux-x64": "0.17.0", + "archgate-win32-x64": "0.17.0" }, "readme": "README.md" }