@@ -189,7 +189,7 @@ export default class Publish {
189189
190190 // set version tag
191191 res = await repeatAction ( async ( ) => {
192- process . stdout . write ( "Set release tag ... " ) ;
192+ process . stdout . write ( "Adding release tag ... " ) ;
193193
194194 const res = await this . #pkg. git . exec ( [ "tag" , "--cleanup=verbatim" , "-a" , "-m" , `Release ${ this . #currentRelease. versionString } \n\n${ this . #changelogText } \n` , this . #currentRelease. versionString ] ) ;
195195
@@ -202,7 +202,7 @@ export default class Publish {
202202 // set "latest" tag
203203 if ( this . #latestTag ) {
204204 res = await repeatAction ( async ( ) => {
205- process . stdout . write ( `Set "${ this . #latestTag } " tag ... ` ) ;
205+ process . stdout . write ( `Adding "${ this . #latestTag } " tag ... ` ) ;
206206
207207 const res = await this . #pkg. git . exec ( [ "tag" , "--force" , "-a" , "-m" , "Latest stable release" , this . #latestTag ] ) ;
208208
@@ -216,7 +216,7 @@ export default class Publish {
216216 // set next tag
217217 if ( this . #nextTag ) {
218218 res = await repeatAction ( async ( ) => {
219- process . stdout . write ( `Set "${ this . #nextTag } " tag ... ` ) ;
219+ process . stdout . write ( `Adding "${ this . #nextTag } " tag ... ` ) ;
220220
221221 const res = await this . #pkg. git . exec ( [ "tag" , "--force" , "-a" , "-m" , "Next release" , this . #nextTag ] ) ;
222222
@@ -332,7 +332,7 @@ export default class Publish {
332332
333333 // commit docs
334334 res = await repeatAction ( async ( ) => {
335- process . stdout . write ( "Commiting docs ... " ) ;
335+ process . stdout . write ( "Commiting documentation ... " ) ;
336336
337337 const res = await this . #pkg. git . exec ( [ "commit" , "-m" , `docs: update docs` ] ) ;
338338
0 commit comments