diff --git a/CHANGELOG.md b/CHANGELOG.md index af287c2..afbebd0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [0.23.2](https://github.com/archgate/cli/compare/v0.23.1...v0.23.2) (2026-03-23) + +### Bug Fixes + +* correct scanner positions, suppress stderr noise, and fix stdin hang ([#155](https://github.com/archgate/cli/issues/155)) ([387b318](https://github.com/archgate/cli/commit/387b318edd8945faa86f89c9450599678da6d199)) + ## [0.23.1](https://github.com/archgate/cli/compare/v0.23.0...v0.23.1) (2026-03-23) ### Bug Fixes diff --git a/bun.lock b/bun.lock index 21d1bd0..ba421c9 100644 --- a/bun.lock +++ b/bun.lock @@ -22,9 +22,9 @@ "zod": "4.3.6", }, "optionalDependencies": { - "archgate-darwin-arm64": "0.23.1", - "archgate-linux-x64": "0.23.1", - "archgate-win32-x64": "0.23.1", + "archgate-darwin-arm64": "0.23.2", + "archgate-linux-x64": "0.23.2", + "archgate-win32-x64": "0.23.2", }, "peerDependencies": { "typescript": "^5 || ^6.0.0", diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index 6e1d147..4741d78 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.23.1", + softwareVersion: "0.23.2", 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 3e466da..2f53800 100644 --- a/docs/public/version.json +++ b/docs/public/version.json @@ -1 +1 @@ -{ "version": "v0.23.1" } +{ "version": "v0.23.2" } diff --git a/package.json b/package.json index 3655364..d50b9f1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "archgate", - "version": "0.23.1", + "version": "0.23.2", "description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents", "keywords": [ "adr", @@ -76,9 +76,9 @@ "typescript": "^5 || ^6.0.0" }, "optionalDependencies": { - "archgate-darwin-arm64": "0.23.1", - "archgate-linux-x64": "0.23.1", - "archgate-win32-x64": "0.23.1" + "archgate-darwin-arm64": "0.23.2", + "archgate-linux-x64": "0.23.2", + "archgate-win32-x64": "0.23.2" }, "readme": "README.md" }