Skip to content

Commit

Permalink
Scope::Guard is now a requirement for 5.10 as well as 5.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pjf committed Jun 29, 2008
1 parent 515fc23 commit c6a566b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions Changes
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ Revision history for Fatal


1.10_07 Sun Jun 29 15:54:26 AUSEST 2008 1.10_07 Sun Jun 29 15:54:26 AUSEST 2008
* RELEASE CODENAME: "ikegami", in thanks for solving the problem * RELEASE CODENAME: "ikegami", in thanks for solving the problem
of getting lexical replacement of subroutines working for real of getting lexical replacement of subroutines working for real
under Perl 5.8. As this works better than my 5.10 implemenation, under Perl 5.8. As this works better than my 5.10 implemenation,
it forms the foundation for this release. it forms the foundation for this release.


* Removed inappropriate diagnostics about :lexical from Fatal.pm * Removed inappropriate diagnostics about :lexical from Fatal.pm


Expand Down Expand Up @@ -36,7 +36,9 @@ Revision history for Fatal
* Expanded documentation on autodie, particularly for * Expanded documentation on autodie, particularly for
exception handling under Perl 5.8. exception handling under Perl 5.8.


* Less warnings from t/exceptions.t when running under 5.10. * Less warnings from t/exceptions.t when running under 5.10.

* All releases now really depend upon Scope::Guard, not just 5.8.


1.10_06 Sun Jun 22 21:50:39 AUSEST 2008 1.10_06 Sun Jun 22 21:50:39 AUSEST 2008


Expand Down
2 changes: 1 addition & 1 deletion Makefile.PL
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ version_from( 'lib/autodie/exception.pm');
test_requires( 'Test::More'); test_requires( 'Test::More');


requires( 'perl' => '5.8.0'); requires( 'perl' => '5.8.0');
requires( 'Scope::Guard' => 0) if $] < 5.010; # For 5.8 support. requires( 'Scope::Guard' => 0);


recommends( 'IPC::System::Simple' => '0.12'); # For autodying system() recommends( 'IPC::System::Simple' => '0.12'); # For autodying system()


Expand Down

0 comments on commit c6a566b

Please sign in to comment.