table of contents
Software::Release::Change(3pm) | User Contributed Perl Documentation | Software::Release::Change(3pm) |
NAME¶
Software::Release::Change - A change made in a software release.
VERSION¶
version 0.03
SYNOPSIS¶
use DateTime; use Software::Release::Change; my $change = Software::Release::Change->new( author_name => 'gphat', author_email => 'gphat@cpan.org', change_id => 'abc1234', date => DateTime->now, description => 'Frozzled the wozjob' );
DESCRIPTION¶
Software::Release::Change represents a single change made in a software release.
ATTRIBUTES¶
author_email¶
The author's email address
author_name¶
The author's name
change_id¶
The id of the change.
committer_email¶
The committer's email address
committer_name¶
The committer's name
date¶
The date
description¶
The description of the change.
AUTHOR¶
Cory G Watson <gphat@cpan.org>
COPYRIGHT AND LICENSE¶
This software is copyright (c) 2011 by Infinity Interactive, Inc.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.
2022-06-17 | perl v5.34.0 |