CPAN::Changes::Group - An entry group in a CPAN Changes file
Contents
Attributes
name
The name of the change group.
Copyright And License
See CPAN::Changes for the copyright and license.
perl v5.40.1 2025-04-20 CPAN::Changes::Group(3pm)
Description
Represents a group of change entries on a changelog release. This is a legacy interface for the and its
use is discouraged.
Behind the scenes, this works as a proxy for the real CPAN::Changes::Entry objects.
Methods
is_emptyadd_changeschangesset_changesclear_changesserialize
Name
CPAN::Changes::Group - An entry group in a CPAN Changes file
See Also
• CPAN::Changes
Synopsis
my $group = CPAN::Changes::Group->new(
name => 'A change group',
changes => [
'A change entry',
'Another change entry',
],
);
