diff --git a/Changes b/Changes index 52f8d0c..edff2bd 100644 --- a/Changes +++ b/Changes @@ -2,7 +2,12 @@ Revision history for Perl extension WebService-DNSMadeEasy {{$NEXT}} -0.01 2016-05-24T03:27:19Z +0.02 2016-05-24T13:33:30Z + - Added some missing dependencies to the cpanfile + - Minor pod update + - Print a bit more info to screen when an api request fails + - Modify tests to handle sandbox quirks more gracefully - - original version +0.01 2016-05-24T03:27:19Z + - Original version diff --git a/META.json b/META.json index a0606d8..d8ca3cb 100644 --- a/META.json +++ b/META.json @@ -43,11 +43,13 @@ }, "runtime" : { "requires" : { + "DDP" : "0", "DateTime" : "0", "DateTime::Format::HTTP" : "0", "Digest::HMAC_SHA1" : "0", "HTTP::Request" : "0", "Moo" : "0", + "MooX::Singleton" : "0", "Role::REST::Client" : "0", "String::CamelSnakeKebab" : "0" } @@ -71,6 +73,6 @@ "web" : "https://github.com/kablamo/WebService-DNSMadeEasy" } }, - "version" : "0.01", + "version" : "0.02", "x_authority" : "cpan:KABLAMO" } diff --git a/README.md b/README.md index 3d2e168..869709a 100644 --- a/README.md +++ b/README.md @@ -70,4 +70,7 @@ it under the same terms as Perl itself. # AUTHOR Eric Johnson -Forked from Torsten Raudssus's WWW::DNSMadeEasy module. + +This module started as a fork of Torsten Raudssus's WWW::DNSMadeEasy module, +but its pretty much a total rewrite especially since v1 and v2 of the DNS Made +Easy protocol are very different. diff --git a/lib/WebService/DNSMadeEasy.pm b/lib/WebService/DNSMadeEasy.pm index 3c2da4c..2022d7a 100644 --- a/lib/WebService/DNSMadeEasy.pm +++ b/lib/WebService/DNSMadeEasy.pm @@ -5,7 +5,7 @@ use Moo; use WebService::DNSMadeEasy::Client; use WebService::DNSMadeEasy::ManagedDomain; -our $VERSION = "0.01"; +our $VERSION = "0.02"; has api_key => (is => 'ro', required => 1); has secret => (is => 'ro', required => 1);