Skip to content

Commit

Permalink
add dependency on LWP::Protocol::https
Browse files Browse the repository at this point in the history
  • Loading branch information
DrHyde committed May 10, 2020
1 parent dba1dfa commit 1d3eebf
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2.32 2020-05-10 Add dependency on LWP::Protocol::https which has
been split out into a separate dist on the CPAN

2.31 2014-04-05 Update to make it work with recent JSON.pm. Now
requires JSON.pm 2.90 or higher.

Expand Down
13 changes: 7 additions & 6 deletions Makefile.PL
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,12 @@ WriteMakefile(
},
VERSION_FROM => 'lib/Net/Random.pm',
PREREQ_PM => {
'LWP::UserAgent' => 0,
'Encode::Locale' => 1.01, # dep of LWP; earlier versions emit
# spurious warnings
'Test::More' => 0.64,
'Test::MockObject' => 1.07,
'JSON' => 2.90,
'LWP::UserAgent' => 0,
'LWP::Protocol::SSL' => 0,
'Encode::Locale' => 1.01, # dep of LWP; earlier versions emit
# spurious warnings
'Test::More' => 0.64,
'Test::MockObject' => 1.07,
'JSON' => 2.90,
}
);
2 changes: 1 addition & 1 deletion lib/Net/Random.pm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use strict;
local $^W = 1;
use vars qw($VERSION %randomness);

$VERSION = '2.31';
$VERSION = '2.32';

require LWP::UserAgent;
use Sys::Hostname;
Expand Down

0 comments on commit 1d3eebf

Please sign in to comment.