From: Marius Gavrilescu Date: Sun, 15 Mar 2015 10:20:32 +0000 (+0200) Subject: Bump version and update Changes X-Git-Tag: 0.001001^0 X-Git-Url: http://git.ieval.ro/?p=webservice-strike.git;a=commitdiff_plain;h=9b0928060d55238fb248b38e3d9dc4e977d13fc4 Bump version and update Changes --- diff --git a/Changes b/Changes index 3678ea0..a2c5365 100644 --- a/Changes +++ b/Changes @@ -1,4 +1,7 @@ Revision history for Perl extension WebService::Strike. +0.001001 2015-03-15T12:20 + - Add Class::Accessor::Fast to dependencies + 0.001 2015-03-15T12:05 - Initial release diff --git a/README b/README index 73a6258..3e91709 100644 --- a/README +++ b/README @@ -1,5 +1,5 @@ -WebService-Strike version 0.001 -=============================== +WebService-Strike version 0.001001 +================================== INSTALLATION @@ -16,6 +16,7 @@ This module requires these other modules and libraries: * Test::RequiresInternet * Try::Tiny +* Class::Accessor::Fast * Date::Parse * JSON::MaybeXS * Sort::ByExample diff --git a/lib/WebService/Strike.pm b/lib/WebService/Strike.pm index 8ff1e55..44ad562 100644 --- a/lib/WebService/Strike.pm +++ b/lib/WebService/Strike.pm @@ -7,7 +7,7 @@ use parent qw/Exporter/; our @EXPORT = qw/strike/; ## no critic (ProhibitAutomaticExportation) our @EXPORT_OK = qw/strike_query strike/; -our $VERSION = '0.001'; +our $VERSION = '0.001001'; our $BASE_URL = 'http://getstrike.net/api/torrents/'; use JSON::MaybeXS qw/decode_json/; diff --git a/lib/WebService/Strike/Torrent.pm b/lib/WebService/Strike/Torrent.pm index 8c8a894..34502bd 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.001'; +our $VERSION = '0.001001'; use Date::Parse qw/str2time/; use JSON::MaybeXS qw/decode_json/;