Subject: | Change in version definition to help package system pick up version |
perl version v5.8.8
rpm-4.4.2-15.2
linux v2.6.16
RPM, and probably other package systems, seems to have problems picking
up the version of Text::RecordParse::Tab. If you use the same approach
to the version info as in Text::RecordParser::Tab, picks this up fine.
I've attached a diff for the change of lib/Text/RecordParser.pm
Subject: | Text-RecordParser-v1.1.2-version.patch |
--- lib/Text/RecordParser.pm.orig 2006-05-05 19:35:53.000000000 +0200
+++ lib/Text/RecordParser.pm 2006-05-05 19:36:22.000000000 +0200
@@ -87,7 +87,7 @@
use Readonly;
use Text::ParseWords qw( parse_line );
-use version; our $VERSION = qv('1.1.2');
+our $VERSION = version->new('1.1.2');
Readonly my $COMMA => ',';
Readonly my $EMPTY_STR => q{};