in reply to Trying to build a module for upload to CPAN
I like to use #VERSION comments in my files that get replaced by whatever version is being built, default to the next version based on the last git tag, have Git be responsible for the MANIFEST, move all my POD to the __END__ of the file, automatically determine my prereqs but let me override them, and test my code for documentation coverage. You can see a minimal configuration for all of that in my module Log::Progress / dist.ini
Once everything is installed, my release process is "dzil test" then "dzil release", it prompts me for my PAUSE password, then it's published. Releasing a dev version is "V=1.11_01 dzil release" then later "V=1.12 dzil release" to get back to 2 decimal places.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Trying to build a module for upload to CPAN
by talexb (Chancellor) on Oct 29, 2021 at 13:03 UTC | |
|
Re^2: Trying to build a module for upload to CPAN
by perlfan (Parson) on Oct 29, 2021 at 09:01 UTC | |
by Tux (Canon) on Oct 29, 2021 at 11:25 UTC | |
by perlfan (Parson) on Oct 30, 2021 at 00:57 UTC |