NAME

Dist::Zilla::Plugin::JSAN::PkgVersion - Embedd module version to sources

VERSION

version 0.06

SYNOPSIS

In your dist.ini:

[JSAN::PkgVersion]

In your sources:

Class('Digest.MD5', {
    
    /*VERSION,*/
    
    has : {
        ...
    }
})

will become after build:

Class('Digest.MD5', {
    
    VERSION : 0.01,
     
    has : {
        ...
    }
})

DESCRIPTION

This plugin will replace the

/*VERSION,*/ 

placeholders with the distribution version.

AUTHOR

Nickolay Platonov <nplatonov@cpan.org>

COPYRIGHT AND LICENSE

This software is copyright (c) 2011 by Nickolay Platonov.

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