From 17df8615411f781abe2cf88f3336d09b2083a99c Mon Sep 17 00:00:00 2001 From: Brian Cassidy Date: Thu, 10 Feb 2011 08:22:31 -0400 Subject: [PATCH] prep release --- Changes | 2 +- lib/CPAN/Changes.pm | 2 +- t/read_no-leading-space-for-change.t | 4 +--- t/self.t | 2 +- 4 files changed, 4 insertions(+), 6 deletions(-) diff --git a/Changes b/Changes index 9172832..ac30f41 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Revision history for perl module CPAN::Changes -NEXT +0.03 2011-02-10 - Allow more than one space between the version and the date. The spec allowed for this, but the parser did not. (Dave Rolsky) diff --git a/lib/CPAN/Changes.pm b/lib/CPAN/Changes.pm index 91344f4..f1021c1 100644 --- a/lib/CPAN/Changes.pm +++ b/lib/CPAN/Changes.pm @@ -7,7 +7,7 @@ use CPAN::Changes::Release; use Text::Wrap (); use Scalar::Util (); -our $VERSION = '0.02'; +our $VERSION = '0.03'; sub new { my $class = shift; diff --git a/t/read_no-leading-space-for-change.t b/t/read_no-leading-space-for-change.t index 6638b9f..25d4e46 100644 --- a/t/read_no-leading-space-for-change.t +++ b/t/read_no-leading-space-for-change.t @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More; +use Test::More tests => 10; use_ok( 'CPAN::Changes' ); @@ -27,5 +27,3 @@ is_deeply( [ "Initial release This line is part of the first" ], 'one change line' ); - -done_testing; diff --git a/t/self.t b/t/self.t index 3ac49f2..6eb97fd 100644 --- a/t/self.t +++ b/t/self.t @@ -1,7 +1,7 @@ use strict; use warnings; -use Test::More tests => 5; +use Test::More tests => 6; use_ok( 'CPAN::Changes' );