summaryrefslogtreecommitdiff
path: root/bumper.md
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2021-04-22 08:09:21 +0300
committerLars Wirzenius <liw@liw.fi>2021-04-22 08:39:16 +0300
commit3f68ce4a8e9b295a4b9fc288174f166e229da8b0 (patch)
treea4a235e498c98fd02ab5b84f66e577e2a14410c3 /bumper.md
parent36db48686de4baf1b122f8b78d96432b398be595 (diff)
downloadbumper-rs-3f68ce4a8e9b295a4b9fc288174f166e229da8b0.tar.gz
feat: allow setting git tag name template
Diffstat (limited to 'bumper.md')
-rw-r--r--bumper.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/bumper.md b/bumper.md
index 1fc4336..9472b73 100644
--- a/bumper.md
+++ b/bumper.md
@@ -149,9 +149,9 @@ given an installed Bumper
given file foo/setup.py from empty
given file foo/lib/version.py from empty
given all files in foo are committed to git
-when I run, in foo, bumper 105.12765.42
+when I run, in foo, bumper --tag=foo-%v 105.12765.42
then all changes in foo are committed
-then in foo, git tag v105.12765.42 is a signed tag
+then in foo, git tag foo-105.12765.42 is a signed tag
then file foo/lib/version.py matches regex /__version__\s*=\s*"105\.12765\.42"/
~~~