diff --git a/CHANGELOG.md b/CHANGELOG.md index 9234129f..a8cc4e23 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [0.20.0](https://github.com/archgate/cli/compare/v0.19.0...v0.20.0) (2026-03-22) + +### Features + +* wire PostHog telemetry into CLI lifecycle ([#141](https://github.com/archgate/cli/issues/141)) ([292ff58](https://github.com/archgate/cli/commit/292ff5809ab925b135c4e074a48eb211bd77ff75)) + ## [0.19.0](https://github.com/archgate/cli/compare/v0.18.0...v0.19.0) (2026-03-22) ### Features diff --git a/bun.lock b/bun.lock index 036cf6f6..eaeaafa3 100644 --- a/bun.lock +++ b/bun.lock @@ -21,9 +21,9 @@ "zod": "4.3.6", }, "optionalDependencies": { - "archgate-darwin-arm64": "0.19.0", - "archgate-linux-x64": "0.19.0", - "archgate-win32-x64": "0.19.0", + "archgate-darwin-arm64": "0.20.0", + "archgate-linux-x64": "0.20.0", + "archgate-win32-x64": "0.20.0", }, "peerDependencies": { "typescript": "^5", diff --git a/docs/astro.config.mjs b/docs/astro.config.mjs index c9310429..9152098c 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.19.0", + softwareVersion: "0.20.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/docs/public/version.json b/docs/public/version.json index c715b1e5..664363b8 100644 --- a/docs/public/version.json +++ b/docs/public/version.json @@ -1 +1 @@ -{ "version": "v0.19.0" } +{ "version": "v0.20.0" } diff --git a/package.json b/package.json index ab2cd294..a5f6a7bd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "archgate", - "version": "0.19.0", + "version": "0.20.0", "description": "Enforce Architecture Decision Records as executable rules — for both humans and AI agents", "keywords": [ "adr", @@ -75,9 +75,9 @@ "typescript": "^5" }, "optionalDependencies": { - "archgate-darwin-arm64": "0.19.0", - "archgate-linux-x64": "0.19.0", - "archgate-win32-x64": "0.19.0" + "archgate-darwin-arm64": "0.20.0", + "archgate-linux-x64": "0.20.0", + "archgate-win32-x64": "0.20.0" }, "readme": "README.md" }