Revision history for Perl extension WebService::Strike.
+0.005 2016-01-2318:51+00:00
+ - Update for API V2.1
+ - Make torrent method die as the corresponding API call was removed
+ - Implement magnet method manually as the server no longer returns the magnet link
+ - Remove dependency on Date::Parse
+
0.004003 2015-08-08T13:31+03:00
- Fix failing test
- Lowercase keys in strike_imdb response
-WebService-Strike version 0.004002
-==================================
+WebService-Strike version 0.005
+===============================
INSTALLATION
COPYRIGHT AND LICENCE
-Copyright (C) 2015 by Marius Gavrilescu
+Copyright (C) 2015-2016 by Marius Gavrilescu
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.20.2 or,
our @EXPORT = qw/strike strike_search strike_imdb/;
our @EXPORT_OK = (@EXPORT, 'strike_query');
-our $VERSION = '0.004003';
+our $VERSION = '0.005';
our $BASE_URL = 'https://getstrike.net/api/v2';
use JSON::MaybeXS qw/decode_json/;
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2015 by Marius Gavrilescu
+Copyright (C) 2015-2016 by Marius Gavrilescu
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.20.2 or,
use warnings;
use parent qw/Class::Accessor::Fast/;
-our $VERSION = '0.004002';
+our $VERSION = 0.005;
use JSON::MaybeXS qw/decode_json/;
use MIME::Base64;
=head1 COPYRIGHT AND LICENSE
-Copyright (C) 2015 by Marius Gavrilescu
+Copyright (C) 2015-2016 by Marius Gavrilescu
This library is free software; you can redistribute it and/or modify
it under the same terms as Perl itself, either Perl version 5.20.2 or,