Revision history for Perl extension WWW::Search::Torrentz.
+0.001001 Tue 10 Sep 09:52:24 EEST 2013
+ - Fix WWW::Search::Torrentz on perl < 5.018
0.001 Mon 9 Sep 15:00:23 EEST 2013
- Initial release
-WWW-Search-Torrentz version 0.001
-=================================
+WWW-Search-Torrentz version 0.001001
+====================================
WWW::Search::Torrentz is a WWW::Search backend for the http://torrentz.eu
torrent search aggregator.
use 5.014000;
use strict;
use warnings;
-no warnings 'experimental::smartmatch';
+no if $] >= 5.018, warnings => 'experimental::smartmatch';
use parent qw/WWW::Search/;
-our $VERSION = '0.001';
+our $VERSION = '0.001001';
our $MAINTAINER = 'Marius Gavrilescu <marius@ieval.ro>';
use WWW::Search::Torrentz::Result;
=head1 NAME
-WWW::Search::Torrentz - search torrentz.eu with WWW:Search
+WWW::Search::Torrentz - search torrentz.eu with WWW::Search
=head1 SYNOPSIS
use warnings;
use parent qw/WWW::SearchResult/;
-our $VERSION = '0.001';
+our $VERSION = '0.001001';
use HTML::TreeBuilder;
use URI::Escape qw/uri_escape/;