aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2020-04-30 13:57:33 +0200
committerThierry Vignaud <thierry.vignaud@gmail.com>2020-06-03 15:41:29 +0200
commita58cf629be7e0d0512d6e1fd95c5004fb833c8c3 (patch)
treebffb8870e380b68a5aa5c2a2390325a3b9c0cb15
parent527ca9a397c8e506dd10e5383e76d0f29c98effe (diff)
downloadperl-URPM-a58cf629be7e0d0512d6e1fd95c5004fb833c8c3.tar
perl-URPM-a58cf629be7e0d0512d6e1fd95c5004fb833c8c3.tar.gz
perl-URPM-a58cf629be7e0d0512d6e1fd95c5004fb833c8c3.tar.bz2
perl-URPM-a58cf629be7e0d0512d6e1fd95c5004fb833c8c3.tar.xz
perl-URPM-a58cf629be7e0d0512d6e1fd95c5004fb833c8c3.zip
5.1225.122
v5.28.0 is less than 5.21 (if interepreted as a floating point, which perl always did). So in order to to switch from old-style to new-style, we need to use at least v5.212.0, as 5.21 was the greatest old-style version.
-rw-r--r--Changes2
-rw-r--r--URPM.pm2
2 files changed, 3 insertions, 1 deletions
diff --git a/Changes b/Changes
index c5978d1..3650016 100644
--- a/Changes
+++ b/Changes
@@ -1,3 +1,5 @@
+Version 5.122 - 3 June 2020
+
- handle RPM version with "beta" or "rc" in it
Version 5.28 - 30 April 2020
diff --git a/URPM.pm b/URPM.pm
index c3a255a..51ba47a 100644
--- a/URPM.pm
+++ b/URPM.pm
@@ -14,7 +14,7 @@ use URPM::Resolve;
use URPM::Signature;
our @ISA = qw(DynaLoader);
-our $VERSION = 'v5.28';
+our $VERSION = 'v5.122';
URPM->bootstrap($VERSION);