build: don't link to patch release #915

as it does not exist in the migration notes
This commit is contained in:
Sören Weber 2024-09-12 15:42:12 +02:00
parent a185305586
commit 59af8fd7ac
No known key found for this signature in database
GPG key ID: BEC6D55545451B6D

View file

@ -45,6 +45,6 @@ module.exports = {
onlyMilestones: true, onlyMilestones: true,
template: { template: {
group: "\n### {{heading}}\n", group: "\n### {{heading}}\n",
release: ({ body, date, release }) => `## ${release} (` + date.replace( /(\d+)\/(\d+)\/(\d+)/, '$3-$2-$1' ) + `)\n\n[What's new in this release](https://mcshelby.github.io/hugo-theme-relearn/basics/migration/#` + release.replace( /(\d+)\.(\d+)\.(\d+)/, '$1$2$3' ) + `)\n${body}`, release: ({ body, date, release }) => `## ${release} (` + date.replace( /(\d+)\/(\d+)\/(\d+)/, '$3-$2-$1' ) + `)\n\n[What's new in this release](https://mcshelby.github.io/hugo-theme-relearn/basics/migration/#` + release.replace( /(\d+)\.(\d+)\.(\d+)/, '$1$2' ) + `0)\n${body}`,
}, },
}; };