diff options
author | Daniel Friesel <derf@finalrewind.org> | 2011-07-13 07:07:56 +0200 |
---|---|---|
committer | Daniel Friesel <derf@finalrewind.org> | 2011-07-13 07:07:56 +0200 |
commit | d3c04239efd0209b6e9444355c4ae4879eba5daa (patch) | |
tree | 466d803e2167ca58b308876da3e941373c1da63e | |
parent | 9fa4c10cc294f0817f64dbbbdb833abb777bcaa1 (diff) |
Fix perl dependency (>= 5.10.1 because of use parent)
-rwxr-xr-x | Build.PL | 2 | ||||
-rw-r--r-- | Changelog | 2 | ||||
-rw-r--r-- | README | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -15,7 +15,7 @@ Module::Build->new( module_name => 'Travel::Status::DE::DeutscheBahn', license => 'perl', requires => { - 'perl' => '5.10.0', + 'perl' => '5.10.1', 'Carp' => 0, 'Class::Accessor' => '0.16', 'Getopt::Long' => 0, @@ -1,5 +1,7 @@ git HEAD + * Clarify derl dependency (we actually need >= 5.10.1) + [Travel::Status::DE::DeutscheBahn] * Strip leading / trailing whitespace in result fields @@ -8,7 +8,7 @@ Interface to the DeutscheBahn online departure monitor Dependencies ------------ - * perl version 5.10 or newer + * perl version 5.10.1 or newer * Clas::Accessor * LWP::UserAgent (usually shipped by libwww-perl) * XML::LibXML |