in reply to Re^2: DateManip Delta_Format Usage
in thread DateManip Delta_Format Usage

Your reply is greatly appreciated, tardy or not! I wish I knew the version I was using, however that information seems to have been lost. I wasn't event aware that there was a 3rd mode for exact business delta. That is exactly what I needed! Thanks, Nathan

Replies are listed 'Best First'.
Re^4: DateManip Delta_Format Usage
by SBECK (Chaplain) on Jan 14, 2014 at 19:02 UTC

    The version is available (in almost every single module you can get from CPAN) as $VERSION in the module's namespace. For example, the following will usually work:

    use Foo::Bar;
    print $Foo::Bar::VERSION;
    

    For Date::Manip, that will work, or there's an alternative:

    use Date::Manip;
    print DataManipVersion();
    

    which just prints out that value.