fix(aidocs_classes): Fix typo in INextCommitObject interface

This commit is contained in:
Philipp Kunz 2024-06-23 19:47:43 +02:00
parent 4c83725120
commit b6fb7bf029
3 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
## 23.06.2024 - 1.3.1 - {{nextVersionScope}}
fix(aidocs_classes): Fix typo in INextCommitObject interface
{{nextVersionDetails}}
```markdown ```markdown
## [1.2.4] ## [1.2.4]
### Fixed ### Fixed
@ -29,4 +34,4 @@ fix(aidocs): Fix bug in AiDoc class causing undefined token handling
## [1.1.42] - 2023-10-30 ## [1.1.42] - 2023-10-30
### Fixed ### Fixed
- Improve commit message generation by handling empty diffs and updating changelog instructions - Improve commit message generation by handling empty diffs and updating changelog instructions

View File

@ -3,6 +3,6 @@
*/ */
export const commitinfo = { export const commitinfo = {
name: '@git.zone/tsdoc', 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.' description: 'An advanced TypeScript documentation tool using AI to generate and enhance documentation for TypeScript projects.'
} }

View File

@ -6,7 +6,7 @@ export interface INextCommitObject {
recommendedNextVersionLevel: 'fix' | 'feat' | 'BREAKING CHANGE'; // the recommended next version level of the project 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. 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. 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 recommendedNextVersion: string; // the recommended next version of the project, x.x.x
changelog?: string; // the changelog for the next version changelog?: string; // the changelog for the next version
} }