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::Parser(3) User Contributed Perl Documentation CPAN::Changes::Parser(3)

CPAN::Changes::Parser - Parse a CPAN Changelog file

  my $parser = CPAN::Changes::Parser->new(
    version_like => qr/\{\{\$NEXT\}\}/,
    version_prefix => qr/=head\d\s+/,
  );
  my $changelog = $parser->parse_file('Changes', ':utf8');
  my $changelog = $parser->parse_string($content);

Parses a file or string into a CPAN::Changes object. Many forms of change log are accepted.

A regular expression for a token that will be accepted in place of a version number. For example, this could be set to "qr/\{\{\$NEXT\}\}/" if the Dist::Zilla plugin [NextRelease] is managing the file.

A regular expression for a prefix that will be matched before a version number. "qr/=head\d\s+/" could be used if the change log is using Pod headings for the release headings.

Parses a file into a CPAN::Changes object. Optionally accepts a string of layers to be used when reading the file.

Parses a string into a CPAN::Changes object.

See CPAN::Changes for authors.

See CPAN::Changes for the copyright and license.

2025-04-17 perl v5.40.2

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.