1Dist::Zilla::Plugin::GiUts:e:rTaCgo(n3t)ributed Perl DocDuimsetn:t:aZtiilolna::Plugin::Git::Tag(3)
2
3
4
6 Dist::Zilla::Plugin::Git::Tag - Tag the new version
7
9 version 2.045
10
12 In your dist.ini:
13
14 [Git::Tag]
15 tag_format = v%v ; this is the default
16 tag_message = v%v ; this is the default
17
19 Once the release is done, this plugin will record this fact in git by
20 creating a tag. By default, it makes an annotated tag. You can set
21 the "tag_message" attribute to change the message. If you set
22 "tag_message" to the empty string, it makes a lightweight tag.
23
24 It also checks before the release to ensure the tag to be created
25 doesn't already exist. (You would have to manually delete the existing
26 tag before you could release the same version again, but that is almost
27 never a good idea.)
28
29 Plugin options
30 The plugin accepts the following options:
31
32 · tag_format - format of the tag to apply. Defaults to "v%v".
33
34 · tag_message - format of the tag annotation. Defaults to "v%v". Use
35 "tag_message =" to create a lightweight tag. The formatting codes
36 used in "tag_format" and "tag_message" are documented under
37 Dist::Zilla::Role::Git::StringFormatter.
38
39 · time_zone - the time zone to use with %d. Can be any time zone
40 name accepted by DateTime. Defaults to "local".
41
42 · branch - which branch to tag. Defaults to the current branch.
43
44 · signed - whether to make a GPG-signed tag, using the default e-mail
45 address's key. Consider setting "user.signingkey" if "gpg" can't
46 find the correct key:
47
48 $ git config user.signingkey 450F89EC
49
51 tag
52 my $tag = $plugin->tag;
53
54 Return the tag that will be / has been applied by the plugin. That is,
55 returns "tag_format" as completed with the real values.
56
58 Bugs may be submitted through the RT bug tracker
59 <https://rt.cpan.org/Public/Dist/Display.html?Name=Dist-Zilla-Plugin-
60 Git> (or bug-Dist-Zilla-Plugin-Git@rt.cpan.org <mailto:bug-Dist-Zilla-
61 Plugin-Git@rt.cpan.org>).
62
63 There is also a mailing list available for users of this distribution,
64 at <http://dzil.org/#mailing-list>.
65
66 There is also an irc channel available for users of this distribution,
67 at "#distzilla" on "irc.perl.org" <irc://irc.perl.org/#distzilla>.
68
69 I am also usually active on irc, as 'ether' at "irc.perl.org".
70
72 Jerome Quelin
73
75 This software is copyright (c) 2009 by Jerome Quelin.
76
77 This is free software; you can redistribute it and/or modify it under
78 the same terms as the Perl 5 programming language system itself.
79
80
81
82perl v5.28.0 2018-06-03 Dist::Zilla::Plugin::Git::Tag(3)