From: Marius Gavrilescu Date: Sat, 23 Jan 2016 18:50:59 +0000 (+0000) Subject: Bump version and update Changes X-Git-Tag: 0.005^0 X-Git-Url: http://git.ieval.ro/?p=webservice-strike.git;a=commitdiff_plain;h=acdd89e22df468dce4270e771cd97096fbcdc8d4 Bump version and update Changes --- diff --git a/Changes b/Changes index bf67623..d130766 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,11 @@ 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 diff --git a/README b/README index 9c9f4aa..3d9984d 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -WebService-Strike version 0.004002 -================================== +WebService-Strike version 0.005 +=============================== INSTALLATION @@ -12,7 +12,7 @@ To install this module type the following: 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, diff --git a/lib/WebService/Strike.pm b/lib/WebService/Strike.pm index 1b2be6f..fc80406 100644 --- a/lib/WebService/Strike.pm +++ b/lib/WebService/Strike.pm @@ -7,7 +7,7 @@ use parent qw/Exporter/; 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/; @@ -145,7 +145,7 @@ Marius Gavrilescu, Emarius@ieval.roE =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, diff --git a/lib/WebService/Strike/Torrent.pm b/lib/WebService/Strike/Torrent.pm index 4f08520..71fb526 100644 --- a/lib/WebService/Strike/Torrent.pm +++ b/lib/WebService/Strike/Torrent.pm @@ -5,7 +5,7 @@ use strict; 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; @@ -198,7 +198,7 @@ Marius Gavrilescu, Emarius@ieval.roE =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,