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


Zucchini documentation Contained in the Zucchini distribution.

Index


Code Index:

NAME

Top

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

SYNOPSIS

Top

    package Zucchini::Whatever;

    # Must be on one line so MakeMaker can parse it.
    use Zucchini::Version;  our $VERSION = $Zucchini::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

AUTHOR

Top

Chisel Wright <chiselwright@users.berlios.de>

LICENSE

Top

Copyright 2008-2009 by Chisel Wright

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

See <http://www.perl.com/perl/misc/Artistic.html>


Zucchini documentation Contained in the Zucchini distribution.

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

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

package Zucchini::Version;

our $VERSION = $Zucchini::VERSION;

1;

__END__