Subject: | Please define a version (version check fails) |
Hi!
DBIx::Class::InflateColumn::DateTime does not define a version tag,
making it somewhat hard to require a specific version of it.
Some code to reproduce the error:
[code]
Show quoted text
>perl -e "use DBIx::Class::InflateColumn::DateTime 999"
DBIx::Class::InflateColumn::DateTime does not define
$DBIx::Class::InflateColumn
::DateTime::VERSION--version check failed at -e line 1.
BEGIN failed--compilation aborted at -e line 1.
[/code]
Some other code:
[code]
#!/usr/bin/perl
use strict;
use warnings;
use DBIx::Class::InflateColumn::DateTime 0.08114;
print "hi";
[/code]
HTH, Alex