GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
CPAN::Changes::Release(3) User Contributed Perl Documentation CPAN::Changes::Release(3)

CPAN::Changes::Release - Information about a particular release

    my $rel = CPAN::Changes::Release->new(
        version => '0.01',
        date    => '2009-07-06',
    );
    
    $rel->add_changes(
        { group => 'THINGS THAT MAY BREAK YOUR CODE' },
        'Return a Foo object instead of a Bar object in foobar()'
    );

A changelog is made up of one or more releases. This object provides access to all of the key data that embodies a release including the version number, date of release, and all of the changelog information lines. Any number of changelog lines can be grouped together under a heading.

Creates a new release object, using %args as the default data.

Gets/sets the version number for this release.

Gets/sets the date for this release.

Gets/sets the note for this release.

Gets the list of changes for this release as a hashref of group/changes pairs. If a group name is specified, an array ref of changes for that group is returned. Should that group not exist, undef is returned.

Appends a list of changes to the release. Specifying a "group" option appends them to that particular group. NB: the default group is represented by and empty string.

    # Append to default group
    $release->add_changes( 'Added foo() function' );
    
    # Append to a particular group
    $release->add_changes( { group => 'Fixes' }, 'Fixed foo() function' );

Replaces the existing list of changes with the supplied values. Specifying a "group" option will only replace change items in that group.

Clears all changes from the release.

Returns a list of current groups in this release.

If sort is provided, groups are sorted according to the given function. If not, they are sorted alphabetically.

Creates an empty group under the names provided.

Deletes the groups of changes specified.

Deletes all groups that don't contain any changes.

Returns the release data as a string, suitable for inclusion in a Changes file.

If group_sort is provided, change groups are sorted according to the given function. If not, groups are sorted alphabetically.

Returns the internal CPAN::Changes::Group object for the group $name.

If $name is not specified, the "default" group "('')" will be returned.

If $name does not exist, a CPAN::Changes::Group object will be created, and returned.

Attach a CPAN::Changes::Group object to the "::Release". Note that the name is not specified, as it is instead determined from "$group_object->name"

Works like "groups" but instead returns "CPAN::Changes::Group" compatible objects.

  • CPAN::Changes::Spec
  • CPAN::Changes
  • Test::CPAN::Changes

Brian Cassidy <bricas@cpan.org>

Copyright 2011-2013 by Brian Cassidy

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

2014-10-10 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.