aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile.PL
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2021-11-22 17:11:35 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2021-12-02 16:27:06 +0100
commitf0e647904524953a92871d2ac5ed88f87fb65ecb (patch)
tree567d29e827fe376cdbd41b695f64493d031e5c35 /Makefile.PL
parent950d56e991d307b9b60bde8f51920bee3d1bc61c (diff)
downloadperl-URPM-f0e647904524953a92871d2ac5ed88f87fb65ecb.tar
perl-URPM-f0e647904524953a92871d2ac5ed88f87fb65ecb.tar.gz
perl-URPM-f0e647904524953a92871d2ac5ed88f87fb65ecb.tar.bz2
perl-URPM-f0e647904524953a92871d2ac5ed88f87fb65ecb.tar.xz
perl-URPM-f0e647904524953a92871d2ac5ed88f87fb65ecb.zip
5.2215.221
Rationale for the high bump: Fixing the sorting on http://matrix.cpantesters.org/?dist=URPM We switched to version object because that enables to have test versions to test on CPAN testers (eg: 5.21.1, 5.21.2, .. .before releasing 5.22). So we switched from 5.22 to v5.22. See commit 7677ec9fe63dd33d125d19e1f9225c5b4d6d5f4a See https://rt.cpan.org/Public/Bug/Display.html?id=127142 However v5.22.0 is less than 5.21 (interepreted as a floating point by perl): perl -Mversion -E 'say version->new("v5.22")->numify' 5.022000 So we bumped the version from v5.28 to a much higer one. However commit a58cf629be7e0d0512d6e1fd95c5004fb833c8c3 had a typo. It clearly says we wanted to bump to v5.212.0, as 5.21 was the greatest old-style version. But it actually bumped to v5.122 whereas 5.122000 < 5.21: $ perl -Mversion -E 'say version->new("v5.122")->numify' 5.122000
Diffstat (limited to 'Makefile.PL')
-rw-r--r--Makefile.PL2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.PL b/Makefile.PL
index 8331db3..1c64132 100644
--- a/Makefile.PL
+++ b/Makefile.PL
@@ -91,7 +91,7 @@ WriteMakefile(
provides => {
'URPM' => {
file => 'URPM.pm',
- version => 'v5.125',
+ version => 'v5.221',
},
'URPM::Resolve' => {
file => 'URPM/Resolve.pm',