logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

App::KGB::Commit::Tag - a helper class for describing tags

Description

App::KGB::Commit::Tag is a special sub-class of <App:KGB::Commit>, used to describe simple (not annotated
       tags). It only add a new field, tag_name.

Fields

tag_name
           The name of the tag, e.g. "release-1.0".

perl v5.40.0                                       2024-09-20                         App::KGB::Commit::Tag(3pm)

Name

       App::KGB::Commit::Tag - a helper class for describing tags

Synopsis

           my $c = App::KGB::Commit::Tag->new(
               {   id       => 4536,
                   changes  => ["(M)/there"],
                   log      => "fixed /there",
                   author   => "My Self <mself@here.at>",
                   branch   => "trunk",
                   module   => "test",
                   tag_name => 'release-1.0',
               }
           );

See Also