Skip to content

Commit

Permalink
docs: Trivially improve the wording about the created tag (#27)
Browse files Browse the repository at this point in the history
Make more clear that the tag was actually created, but only locally, and
not pushed to a remote.
  • Loading branch information
sschuberth authored Sep 14, 2023
1 parent b54f0ad commit 9778a1f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/kotlin/git/semver/plugin/scm/GitProvider.kt
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ class GitProvider(private val settings: SemverSettings) {
if (tag && settings.releaseTagNameFormat.isNotEmpty()) {
val name = settings.releaseTagNameFormat.format(versionString)
it.tag().setName(name).setMessage(message).call()
println("New tag: $name")
println("Created new local Git tag: $name")
}
}

Expand Down

0 comments on commit 9778a1f

Please sign in to comment.