From: Tomas Doran Date: Wed, 3 Mar 2010 02:24:09 +0000 (+0000) Subject: Changelog, bump version X-Git-Tag: 0.7~1 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FTest-EOL.git;a=commitdiff_plain;h=fb935bc1dd2992e32ea383de39175766dbbdf641 Changelog, bump version --- diff --git a/Changes b/Changes index 358ce01..e8304e1 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,12 @@ Revision history for Test-EOL +0.7 2010-03-03 + - Deal correctly with -I includes paths that include spaces in the + tests to stop them unexpectedly failing. + - Remove shelling out to the system rm command in the tests + to avoid nasty warnings on Win32. + - Remove warning from test diagnostics + 0.6 2010-01-19 - I'm so bad at this! Fix another logic error that made all files fail when using trailing_whitespace option (fREW) diff --git a/lib/Test/EOL.pm b/lib/Test/EOL.pm index e1bb29b..2a04267 100644 --- a/lib/Test/EOL.pm +++ b/lib/Test/EOL.pm @@ -10,7 +10,7 @@ use File::Find; use vars qw( $VERSION $PERL $UNTAINT_PATTERN $PERL_PATTERN); -$VERSION = '0.6'; +$VERSION = '0.7'; $PERL = $^X || 'perl'; $UNTAINT_PATTERN = qr|^([-+@\w./:\\]+)$|;