diff --git a/changelog.md b/changelog.md index 54b272a..435bed2 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,10 @@ # Changelog +## 2024-06-23 - 1.3.11 - fix(core) +Fixed new changelog formatting issue to retain consistent spacing. + +- Adjusted the new changelog generation to ensure consistent spacing for improved readability. + ## 2024-06-23 - 1.3.10 - fix(aidocs_classes) Fix changelog format to remove extra newline diff --git a/ts/00_commitinfo_data.ts b/ts/00_commitinfo_data.ts index f39fa87..570f4e2 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.10', + version: '1.3.11', 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 807d728..ebfb31e 100644 --- a/ts/aidocs_classes/commit.ts +++ b/ts/aidocs_classes/commit.ts @@ -120,7 +120,7 @@ ${JSON.stringify(commitMessages, null, 2)} let newChangelog = `# Changelog\n\n${`## ${newDateString} - {{nextVersion}} - {{nextVersionScope}} {{nextVersionMessage}} -{{nextVersionDetails}}`}\n${oldChangelog}`; +{{nextVersionDetails}}`}\n\n${oldChangelog}`; resultObject.changelog = newChangelog; return resultObject;