=head1 NAME CPAN::Changes::Spec - Specification for CPAN Changes files =head1 VERSION version 0.500004 =head1 SYNOPSIS Revision history for perl module Foo::Bar 0.02 2009-07-17 - Added more foo() tests 0.01 2009-07-16 - Initial release =head1 DESCRIPTION It is intended as a guide for module authors to encourage them to write meaningful changelogs as well as provide a programmatic interface to reliably read and write Changes files. =head1 DATA TYPES =head2 Version Versions should be formatted as described in L. =head2 Date A date/time in the format specified by L aka W3CDTF. B The "T" marker before the time portion is optional. In order to satisfy release events not made to the public, or dates that are historically unknown, the following strings are also available: =over 4 =item * Unknown Release Date =item * Unknown =item * Not Released =item * Development Release =item * Development =item * Developer Release =back =head1 STRUCTURE =head2 Required Elements In its simplest form, the only required elements are a C, a C and the noted changes. Blank lines between the C line and the first C line are optional. Blank lines between C lines are also optional. (whitespace/non-"word" characters) (whitespace) B The characters between a C and a C must start with whitespace, but may subsequently contain any combination of whitespace and non-"word" characters. Example: 0.01 - 2013-12-11 C lines have no specific format. Commonly, authors will use a dash C<-> followed by a space to start a new change, and indent subsequent lines for multi-line changes. Example - Simple Change - This is a very very very long change line Although there is no limit on line length, authors generally wrap each line at 78 columns. =head2 Optional Elements =head3 Release Note Any text following the C portion of the C line will be considered the C. Example: 0.01 2013-04-01 Codename: April Fool - First Release =head2 Preamble Any amount of text before the first C line will be considered part of the preamble. Most existing distributions include something along the lines of: Revision history for perl module My::Module Or Revision history for perl distribution My-Distribution =head2 Groups Changelog entries may be grouped under headings. Heading lines begin with an opening square bracket (C<[>), and end with a matching square bracket (C<]>). When parsing group headings, leading and trailing whitespace inside the brackets should be discarded. (whitespace)[Grouping Name] (whitespace) Since empty lines hold no special meaning, all C lines will fall under the current group until a new group heading is found. Example: [ First Group ] - First Change - Second Change; in first group [ Second Group ] - First Change; in second group =head1 EXAMPLES =head2 Basic Example 0.01 2009-07-16 - Initial release =head2 Example with a preamble Revision history for perl module Foo::Bar 0.02 2009-07-17 - Added more foo() tests 0.01 2009-07-16 - Initial release =head2 Example with groups Revision history for perl module Foo::Bar 0.03 2009-07-18 [Important Security Information] - This release fixes critical bug RT #1234 [Other Changes] - Added some feature 0.02 2009-07-17 - Added more foo() tests 0.01 2009-07-16T19:20:30+01:00 - Initial release =head1 SEE ALSO =over 4 =item * L =item * L =back =head1 AUTHOR Brian Cassidy Ebricas@cpan.orgE =head1 COPYRIGHT AND LICENSE Copyright 2011-2013 by Brian Cassidy This is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =cut