Looking in your Makefile.PL (which you should also do, as it it a fruitful area of study), you can see the line

    VERSION_FROM => 'lib/Games/JackThief.pm',

This tells you where the version information is coming from (other options are also possible).

Go into your module JackThief.pm, and increase the version number. You'll find VERSION also referenced in your documentation, which you'll need to fix.

While you are at it, you may want to increase the perl version number too. Version 5.6 has not been supported for a very long time, and is not supported by the build/make tools either.

Others may disagree, but I've lately increased the MIN_PERL_VERSION line in Makefile.PL to 5.010001 (that is, version 5.10.1) in my own modules (although one of them will be staying at 5.008003 for a while due to a single machine out there that I need to keep happy). You will also find a "use 5.006;" line in your code; you should change that too to either 5.8.3 or 5.10.1.

Good luck,
    -john


On 6/28/2015 4:40 AM, KAPIL RATHORE wrote:
Hello Authors,.

Today i have posted my very first module on PAUSE. Games-JackThief-0.01.tar.gz - is working very fine for latest perl version.
But failing for older versions as reported by CPAN Testers.
I have fixed the issue, but didn't know how to post the version0.02 on PAUSE.
Does uploading on the following file
Games-JackThief-*0.02*.tar.gz  will update the package on server automatically ?

And i found that the description about the functions are not good on cpan 
search,
please let me know how can i update the documentation there ?


Thanks
Kapil Rathore

Reply via email to