-
Notifications
You must be signed in to change notification settings - Fork 2
Remove "v" prefix from release tags and titles #7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -12,7 +12,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), | |
|
|
||
| Fix release workflow bump detection: correct broken regex (`\[xX\]` → `\[[xX]\]`), use temp file + `awk` markers for reliable multiline PR body handling, replace `echo | grep` with here-strings, and fall back to full-body scan when markers are missing. (PR #6) | ||
|
|
||
| [1.0.1]: https://github.com/nilsandrey/TextToolsPlugin/releases/tag/v1.0.1 | ||
| [1.0.1]: https://github.com/nilsandrey/TextToolsPlugin/releases/tag/1.0.1 | ||
|
|
||
| ## [1.0.0] – 2024-01-01 | ||
|
|
||
|
|
@@ -30,4 +30,4 @@ Fix release workflow bump detection: correct broken regex (`\[xX\]` → `\[[xX]\ | |
| - Settings UI for default pad character, line-number separator, pad toggle, GUID casing, case-sensitive filtering, filter history, and text slots. | ||
| - Full multi-selection support: all commands operate on every active editor selection independently. | ||
|
|
||
| [1.0.0]: https://github.com/nilsandrey/TextToolsPlugin/releases/tag/v1.0.0 | ||
| [1.0.0]: https://github.com/nilsandrey/TextToolsPlugin/releases/tag/1.0.0 | ||
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The CHANGELOG.md links for the already-published releases
1.0.0and1.0.1now point toreleases/tag/1.0.0andreleases/tag/1.0.1respectively. However, the release tags for these versions were created by the old workflow using thevprefix (i.e.,v1.0.0andv1.0.1). Since no GitHub releases exist at the bare1.0.0/1.0.1tag URLs, these two links will be broken for all readers of the CHANGELOG.To fix this, either:
1.0.0and1.0.1in the GitHub repository that point to the same commits asv1.0.0andv1.0.1, orv-prefixed tags (i.e., revert the CHANGELOG.md changes for these two entries), so that only new releases going forward use the bare semver tag format.