Pangloss::Version - distribution version for Pangloss.


Pangloss documentation Contained in the Pangloss distribution.

Index


Code Index:

NAME

Top

Pangloss::Version - distribution version for Pangloss.

SYNOPSIS

Top

 our $VERSION = ((require Pangloss::Version), $Pangloss::VERSION)[1];

DESCRIPTION

Top

Contains distribution version of Pangloss as:

  $Pangloss::Version::VERSION;

and invades the Pangloss namespace to set:

  $Pangloss::VERSION;

which is easier to type.

Designed for minimal-overhead, esp. for CPAN, MakeMaker & Module::Build's version parsing functions.

AUTHOR

Top

Steve Purkis <spurkis@quiup.com>

SEE ALSO

Top

Pangloss


Pangloss documentation Contained in the Pangloss distribution.
package Pangloss::Version;

use strict;
use warnings::register;

our $VERSION = '0.06';

$Pangloss::VERSION = $VERSION;


__END__

#------------------------------------------------------------------------------