Parley::Version - The Parley project-wide version number


Parley documentation Contained in the Parley distribution.

Index


Code Index:

NAME

Top

Parley::Version - The Parley project-wide version number

SYNOPSIS

Top

    package Parley::Whatever;

    # Must be on one line so MakeMaker can parse it.
    use Parley::Version;  our $VERSION = $Parley::VERSION;

DESCRIPTION

Top

Because of the problems coordinating revision numbers in a distributed version control system and across a directory full of Perl modules, this module provides a central location for the project's release number.

IDEA FROM

Top

This idea was taken from SVK


Parley documentation Contained in the Parley distribution.

package Parley;
# vim: ts=8 sts=4 et sw=4 sr sta
use strict;
use warnings;

# derived from mst suggestion on #catalyst
use version; our $VERSION = qv(1.2.1)->numify;

package Parley::Version;

our $VERSION = $Parley::VERSION;

1;


1;