diff options
-rw-r--r-- | Changes | 2 | ||||
-rw-r--r-- | Makefile.PL | 2 | ||||
-rw-r--r-- | urpm.pm | 2 | ||||
-rw-r--r-- | urpmi.pm | 2 |
4 files changed, 5 insertions, 3 deletions
@@ -1,3 +1,5 @@ +Version 8.129 - 21 January 2023 + - library: o prefer wget to curl as the default downloader (mga#24362) o fix curl options to allow it to follow HTTP redirections (mga#31339) diff --git a/Makefile.PL b/Makefile.PL index 412ee7dd..f04f7d86 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -193,7 +193,7 @@ WriteMakefile( }, 'urpmi' => { file => 'urpmi.pm', - version => 'v8.128', + version => 'v8.129', }, }, resources => { @@ -14,7 +14,7 @@ use urpm::md5sum; # perl_checker: require urpm::media # perl_checker: require urpm::parallel -our $VERSION = 'v8.128'; +our $VERSION = 'v8.129'; our @ISA = qw(URPM Exporter); our @EXPORT_OK = ('file_from_local_url', 'file_from_local_medium', 'is_local_medium'); @@ -4,6 +4,6 @@ use strict; # Dummy package for CPAN testers -our $VERSION = '8.128'; +our $VERSION = '8.129'; 1; |