From ee8a3a6f1ac37e7f0fb6c18bec5cd5003867c184 Mon Sep 17 00:00:00 2001 From: Charles de Dreuille Date: Wed, 11 Jun 2025 15:54:09 +0100 Subject: [PATCH] Update changelog.ts Signed-off-by: Charles de Dreuille --- canon-docs/src/utils/changelog.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/canon-docs/src/utils/changelog.ts b/canon-docs/src/utils/changelog.ts index 3eeac4fa15..1c15f5c264 100644 --- a/canon-docs/src/utils/changelog.ts +++ b/canon-docs/src/utils/changelog.ts @@ -19,10 +19,12 @@ export type Component = | 'scrollarea' | 'flex'; +export type Version = `${number}.${number}.${number}`; + export interface ChangelogProps { components: Component[]; description: string; - version: '0.1.0' | '0.2.0' | '0.3.0' | '0.4.0' | '0.5.0' | '0.6.0'; + version: Version; platform: 'oss' | 'portal'; prs: string[]; }