Skip to content

Commit

Permalink
fix(ng-dev/release): fix description for TagRecentMajorAsLatest action (
Browse files Browse the repository at this point in the history
#282)

The `TagRecentMajorAsLatest` action errantly said it was tagging the version as `next` when it tags it as `latest`.
  • Loading branch information
josephperrott authored Nov 4, 2021
1 parent a698f88 commit 1ac7a5f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import {getReleaseTagForVersion} from '../../versioning/version-tags';
*/
export class TagRecentMajorAsLatest extends ReleaseAction {
override async getDescription() {
return `Tag recently published major v${this.active.latest.version} as "next" in NPM.`;
return `Retag recently published major v${this.active.latest.version} as "latest" in NPM.`;
}

override async perform() {
Expand Down

0 comments on commit 1ac7a5f

Please sign in to comment.