Bump version and update Changes 0.005
authorMarius Gavrilescu <marius@ieval.ro>
Sat, 23 Jan 2016 18:50:59 +0000 (18:50 +0000)
committerMarius Gavrilescu <marius@ieval.ro>
Sat, 23 Jan 2016 18:50:59 +0000 (18:50 +0000)
Changes
README
lib/WebService/Strike.pm
lib/WebService/Strike/Torrent.pm

diff --git a/Changes b/Changes
index bf67623fc72e3e0c374b27a3a4f8c8b273b674a7..d130766b245f65d8c91920d2cffb018f23669406 100644 (file)
--- 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 9c9f4aada2406b393a4ab35ae0ba16e053018772..3d9984d11c1e1c8cbc662ac8bc8dc5060b4d5bc4 100644 (file)
--- 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,
index 1b2be6f632cf7826652df09dd577063f3d23e06f..fc8040672c0bda8779c1f3b34c882cb2ab958fcb 100644 (file)
@@ -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, E<lt>marius@ieval.roE<gt>
 
 =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,
index 4f08520e0b9a8c1a2e2b1a815c39e24be343fc9f..71fb52666f2cbeccf0b7289aab2ce49a27efc6ba 100644 (file)
@@ -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, E<lt>marius@ieval.roE<gt>
 
 =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,
This page took 0.013576 seconds and 4 git commands to generate.