diff options
author | Thierry Vignaud <thierry.vignaud@gmail.com> | 2021-12-03 15:09:30 +0100 |
---|---|---|
committer | Thierry Vignaud <thierry.vignaud@gmail.com> | 2021-12-03 15:11:32 +0100 |
commit | c29b5c1db36f7e55652697082a8e868abfebe9bf (patch) | |
tree | 959b391924c1d55b879343825420e8cb0d8bab49 | |
parent | 0acb19ffb2cf8a2dcef3beb44f1c4af670d2219d (diff) | |
download | perl-URPM-c29b5c1db36f7e55652697082a8e868abfebe9bf.tar perl-URPM-c29b5c1db36f7e55652697082a8e868abfebe9bf.tar.gz perl-URPM-c29b5c1db36f7e55652697082a8e868abfebe9bf.tar.bz2 perl-URPM-c29b5c1db36f7e55652697082a8e868abfebe9bf.tar.xz perl-URPM-c29b5c1db36f7e55652697082a8e868abfebe9bf.zip |
5.222
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | Makefile.PL | 2 | ||||
-rw-r--r-- | URPM.pm | 2 |
3 files changed, 4 insertions, 2 deletions
@@ -1,3 +1,5 @@ +Version 5.222 - 3 December 2021 + - Harmonize buffer size (thus fixing "invalid line <@provides" for huge pkgs) Version 5.221 - 2 December 2021 diff --git a/Makefile.PL b/Makefile.PL index 1c64132..04d9830 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -91,7 +91,7 @@ WriteMakefile( provides => { 'URPM' => { file => 'URPM.pm', - version => 'v5.221', + version => 'v5.222', }, 'URPM::Resolve' => { file => 'URPM/Resolve.pm', @@ -14,7 +14,7 @@ use URPM::Resolve; use URPM::Signature; our @ISA = qw(DynaLoader); -our $VERSION = 'v5.221'; +our $VERSION = 'v5.222'; URPM->bootstrap($VERSION); |