From b6fb7bf029e8d6033763fe9d99749998b8f0b431 Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Sun, 23 Jun 2024 19:47:43 +0200 Subject: [PATCH] fix(aidocs_classes): Fix typo in INextCommitObject interface --- changelog.md | 7 ++++++- ts/00_commitinfo_data.ts | 2 +- ts/aidocs_classes/commit.ts | 2 +- 3 files changed, 8 insertions(+), 3 deletions(-) diff --git a/changelog.md b/changelog.md index 57c156d..d9d4cff 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 23.06.2024 - 1.3.1 - {{nextVersionScope}} +fix(aidocs_classes): Fix typo in INextCommitObject interface +{{nextVersionDetails}} + + ```markdown ## [1.2.4] ### Fixed @@ -29,4 +34,4 @@ fix(aidocs): Fix bug in AiDoc class causing undefined token handling ## [1.1.42] - 2023-10-30 ### Fixed -- Improve commit message generation by handling empty diffs and updating changelog instructions \ No newline at end of file +- Improve commit message generation by handling empty diffs and updating changelog instructions diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index d20a1b2..3519fdd 100644 --- a/ts/00_commitinfo_data.ts +++ b/ts/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@git.zone/tsdoc', - version: '1.3.0', + version: '1.3.1', description: 'An advanced TypeScript documentation tool using AI to generate and enhance documentation for TypeScript projects.' } diff --git a/ts/aidocs_classes/commit.ts b/ts/aidocs_classes/commit.ts index 8c68eec..1cdf218 100644 --- a/ts/aidocs_classes/commit.ts +++ b/ts/aidocs_classes/commit.ts @@ -6,7 +6,7 @@ export interface INextCommitObject { recommendedNextVersionLevel: 'fix' | 'feat' | 'BREAKING CHANGE'; // the recommended next version level of the project recommendedNextVersionScope: string; // the recommended scope name of the next version, like "core" or "cli", or specific class names. recommendedNextVersionMessage: string; // the commit message. Don't put fix() feat() or BREAKING CHANGE in the message. Please just the message itself. - recommendedNextVersionDetauls: string[]; // detailed bullet points for the changelog + recommendedNextVersionDetails: string[]; // detailed bullet points for the changelog recommendedNextVersion: string; // the recommended next version of the project, x.x.x changelog?: string; // the changelog for the next version }