Skip to content

Commit

Permalink
change log display in markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
TimurRin committed Jul 23, 2024
1 parent 294e044 commit 4d9dfea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/changelog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ function prepareVersionChangelog(

let fullListMarkdown = "";
sortedChanges.forEach(([message, hashes]) => {
fullListMarkdown += `- [[${hashes.sort().join("], [")}]] ${message}\n`;
fullListMarkdown += `- ${message} ([${hashes.sort().join("], [")}])\n`;
});

const releaseDate = new Date().toISOString().split("T")[0];
Expand Down

0 comments on commit 4d9dfea

Please sign in to comment.