The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Dist::Zilla::Plugin::Git::Tag - tag the new version

VERSION

version 1.100740

SYNOPSIS

In your dist.ini:

    [Git::Tag]
    tag_format  = v%v       ; this is the default
    tag_message = v%v       ; this is the default

DESCRIPTION

Once the release is done, this plugin will record this fact in git by creating a tag. If you set the tag_message attribute, it makes an annotated tag. Otherwise, it makes a lightweight tag.

The plugin accepts the following options:

  • tag_format - format of the tag to apply. Defaults to v%v.

  • tag_message - format of the commit message. Defaults to v%v. Use tag_message = to create a lightweight tag.

You can use the following codes in both options:

%{dd-MMM-yyyy}d

The current date. You can use any CLDR format supported by DateTime. A bare %d means %{dd-MMM-yyyy}d.

%n

a newline

%N

the distribution name

%v

the distribution version

AUTHOR

  Jerome Quelin

COPYRIGHT AND LICENSE

This software is copyright (c) 2009 by Jerome Quelin.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.