Subject: | Conflict w/ use version and IO::Scalar et al |
When we started using the version pragma we starting seeing errors
relating to version numbers in IO::Scalar. There is a space after the
VERSION number that is causing version.pm to complain of invalid data.
In a future release, can the space be removed?
Test:
#!/usr/bin/perl
use strict;
use warnings;
use version;
use IO::Scalar 1.117;
use IO::ScalarArray 1.114;
use IO::Lines 1.108;
$ t.pl
Version string '2.105 ' contains invalid data; ignoring: ' ' at use.pl
line 30.
Version string '2.103 ' contains invalid data; ignoring: ' ' at use.pl
line 31.
Version string '2.103 ' contains invalid data; ignoring: ' ' at use.pl
line 32.