diff --git a/Changelog b/Changelog index f95782d..73fbff3 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,7 @@ +2.02: + +Fixed rt.cpan.org#123087: add IO::Socket::SSL as dependency. + 2.01: dict.leo.org now forces SSL via Cloudflare, we follow suit. diff --git a/Makefile.PL b/Makefile.PL index 4d621f9..b778081 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,5 +1,5 @@ # -# made for WWW::Dict::Leo::Org 1.33 and up +# made for WWW::Dict::Leo::Org 2.01 and up use ExtUtils::MakeMaker; @@ -10,7 +10,7 @@ WriteMakefile( 'clean' => { FILES => '*~' }, 'EXCLUDE_EXT' => [ qw(README) ], 'PREREQ_PM' => { 'Carp::Heavy' => 0, - 'IO::Socket' => 0, + 'IO::Socket::SSL' => 0, 'MIME::Base64' => 0, 'XML::Simple' => 0 } diff --git a/Org.pm b/Org.pm index a2ff04e..6a002b3 100644 --- a/Org.pm +++ b/Org.pm @@ -7,7 +7,7 @@ # or service marks of their respective holders. package WWW::Dict::Leo::Org; -$WWW::Dict::Leo::Org::VERSION = "2.01"; +$WWW::Dict::Leo::Org::VERSION = "2.02"; use strict; use warnings; diff --git a/leo b/leo index 6c98d0b..826ccfb 100755 --- a/leo +++ b/leo @@ -33,7 +33,7 @@ my $default_c = "\033[0m"; # reset default terminal color my $bold_c = "\033[0;34m"; # blue color my $copy_c = "\033[0;35m"; # copyright message color (green) -my $version = "2.01"; +my $version = "2.02"; my $config = $ENV{HOME} . "/.leo"; my $cache = $ENV{HOME} . "/.leo-CACHE.db";