fix(aidocs_classes): Fix changelog formatting issue in commit class
This commit is contained in:
		@@ -1,5 +1,11 @@
 | 
				
			|||||||
# Changelog
 | 
					# Changelog
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					## 2024-06-23 - 1.3.4 - fix(aidocs_classes)
 | 
				
			||||||
 | 
					Fix changelog formatting issue in commit class
 | 
				
			||||||
 | 
					- Adjusted formatting in the template for the changelog in `commit.ts`.
 | 
				
			||||||
 | 
					- Ensured proper line spacing for readability and consistency.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## 2024-06-23 - 1.3.3 - fix(aidocs_classes)
 | 
					## 2024-06-23 - 1.3.3 - fix(aidocs_classes)
 | 
				
			||||||
Fix minor bugs and update dependencies in aidocs_classes
 | 
					Fix minor bugs and update dependencies in aidocs_classes
 | 
				
			||||||
- Fixed typo in INextCommitObject interface within the aidocs_classes.
 | 
					- Fixed typo in INextCommitObject interface within the aidocs_classes.
 | 
				
			||||||
@@ -45,3 +51,4 @@ Improve commit message generation by handling empty diffs and updating changelog
 | 
				
			|||||||
- Enhanced commit message generation to handle empty diffs.
 | 
					- Enhanced commit message generation to handle empty diffs.
 | 
				
			||||||
- Updated instructions for changelog generation for better clarity.
 | 
					- Updated instructions for changelog generation for better clarity.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -3,6 +3,6 @@
 | 
				
			|||||||
 */
 | 
					 */
 | 
				
			||||||
export const commitinfo = {
 | 
					export const commitinfo = {
 | 
				
			||||||
  name: '@git.zone/tsdoc',
 | 
					  name: '@git.zone/tsdoc',
 | 
				
			||||||
  version: '1.3.3',
 | 
					  version: '1.3.4',
 | 
				
			||||||
  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.'
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -115,6 +115,7 @@ ${JSON.stringify(commitMessages, null, 2)}
 | 
				
			|||||||
    let newDateString = new plugins.smarttime.ExtendedDate().exportToHyphedSortableDate();
 | 
					    let newDateString = new plugins.smarttime.ExtendedDate().exportToHyphedSortableDate();
 | 
				
			||||||
    let newChangelog = `# Changelog\n\n${`## ${newDateString} - {{nextVersion}} - {{nextVersionScope}}
 | 
					    let newChangelog = `# Changelog\n\n${`## ${newDateString} - {{nextVersion}} - {{nextVersionScope}}
 | 
				
			||||||
{{nextVersionMessage}}
 | 
					{{nextVersionMessage}}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
{{nextVersionDetails}}
 | 
					{{nextVersionDetails}}
 | 
				
			||||||
`}\n\n${oldChangelog}\n`;
 | 
					`}\n\n${oldChangelog}\n`;
 | 
				
			||||||
    resultObject.changelog = newChangelog;
 | 
					    resultObject.changelog = newChangelog;
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user