Skip to content

Commit

Permalink
Fix invalid link in release notes (#5280)
Browse files Browse the repository at this point in the history
  • Loading branch information
HarelM authored Dec 31, 2024
1 parent 47ed30d commit 06e1ab3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build/release-notes.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ const previous = releaseNotes[1];
// Print the release notes template.

const templatedReleaseNotes = `https://github.com/maplibre/maplibre-gl-js
[Changes](https://github.com/maplibre/maplibre-gl-js/compare/v${previous.version}...v${latest.version}) since [MapLibre GL JS v${previous.version}](https://github.com/maplibre/releases/tag/v${previous.version}):
[Changes](https://github.com/maplibre/maplibre-gl-js/compare/v${previous.version}...v${latest.version}) since [MapLibre GL JS v${previous.version}](https://github.com/maplibre/maplibre-gl-js/releases/tag/v${previous.version}):
${latest.changelog}
${semver.prerelease(latest.version) ? 'Pre-release version' : ''}`;

// eslint-disable-next-line eol-last
process.stdout.write(templatedReleaseNotes.trimEnd());
process.stdout.write(templatedReleaseNotes.trimEnd());

0 comments on commit 06e1ab3

Please sign in to comment.