diff --git a/CHANGELOG.md b/CHANGELOG.md index 86092206..9bda8868 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [0.17.1](https://github.com/archgate/cli/compare/v0.17.0...v0.17.1) (2026-03-21) + +### Bug Fixes + +* serve version from static endpoint to avoid GitHub API rate limits ([#112](https://github.com/archgate/cli/issues/112)) ([877c6f5](https://github.com/archgate/cli/commit/877c6f51b0a992b1cd436f3f1da387f5885e62f9)) + ## [0.17.0](https://github.com/archgate/cli/compare/v0.16.0...v0.17.0) (2026-03-21) ### Features diff --git a/bun.lock b/bun.lock index 2334e0f6..f9aca30d 100644 --- a/bun.lock +++ b/bun.lock @@ -19,9 +19,9 @@ "zod": "4.3.6", }, "optionalDependencies": { - "archgate-darwin-arm64": "0.17.0", - "archgate-linux-x64": "0.17.0", - "archgate-win32-x64": "0.17.0", + "archgate-darwin-arm64": "0.17.1", + "archgate-linux-x64": "0.17.1", + "archgate-win32-x64": "0.17.1", }, "peerDependencies": { "typescript": "^5", diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index c6ff4a1d..a851a4ce 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.17.0", + softwareVersion: "0.17.1", license: "https://github.com/archgate/cli/blob/main/LICENSE", offers: { "@type": "Offer", price: "0", priceCurrency: "USD" }, url: "https://cli.archgate.dev", diff --git a/docs/public/version.json b/docs/public/version.json index f38a1832..3783d7fb 100644 --- a/docs/public/version.json +++ b/docs/public/version.json @@ -1 +1 @@ -{ "version": "v0.17.0" } +{ "version": "v0.17.1" } diff --git a/package.json b/package.json index cac34927..f6ac9653 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "archgate", - "version": "0.17.0", + "version": "0.17.1", "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.17.0", - "archgate-linux-x64": "0.17.0", - "archgate-win32-x64": "0.17.0" + "archgate-darwin-arm64": "0.17.1", + "archgate-linux-x64": "0.17.1", + "archgate-win32-x64": "0.17.1" }, "readme": "README.md" }